You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 30, 2026. It is now read-only.
Copy file name to clipboardExpand all lines: internal/genpyxis/schema.graphql
+18-6Lines changed: 18 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -551,7 +551,9 @@ type ContainerImage {
551
551
"""
552
552
sum_layer_size_bytes: Int64
553
553
554
-
"""Field for multiarch primary key"""
554
+
"""
555
+
The content identifier (sha256 digest) of the final, topmost layer in the container image. This ID corresponds to the layer at the highest index within the parsed_data.layers array.
556
+
"""
555
557
top_layer_id: String
556
558
557
559
"""
@@ -659,7 +661,9 @@ type ParsedData {
659
661
image_id: String
660
662
labels: [Label]
661
663
662
-
"""Layer digests from the image."""
664
+
"""
665
+
An ordered list of container layers extracted from the image manifest. Layers are sorted from base layer (index 0) to top layer.
666
+
"""
663
667
layers: [String]
664
668
os: String
665
669
ports: String
@@ -670,7 +674,9 @@ type ParsedData {
670
674
"""Size of this image as reported by image metadata."""
671
675
size: Int64
672
676
673
-
"""Information about uncompressed layer sizes."""
677
+
"""
678
+
Information about uncompressed layer sizes. The ordered list starts from top layer to base layer.
679
+
"""
674
680
uncompressed_layer_sizes: [UncompressedLayerSize]
675
681
676
682
"""Uncompressed images size in bytes (sum of uncompressed layers size)."""
@@ -6584,7 +6590,9 @@ input ContainerImageInput {
6584
6590
"""
6585
6591
sum_layer_size_bytes: Int64
6586
6592
6587
-
"""Field for multiarch primary key"""
6593
+
"""
6594
+
The content identifier (sha256 digest) of the final, topmost layer in the container image. This ID corresponds to the layer at the highest index within the parsed_data.layers array.
6595
+
"""
6588
6596
top_layer_id: String
6589
6597
6590
6598
"""
@@ -6682,7 +6690,9 @@ input ParsedDataInput {
6682
6690
image_id: String
6683
6691
labels: [LabelInput]
6684
6692
6685
-
"""Layer digests from the image."""
6693
+
"""
6694
+
An ordered list of container layers extracted from the image manifest. Layers are sorted from base layer (index 0) to top layer.
6695
+
"""
6686
6696
layers: [String]
6687
6697
os: String
6688
6698
ports: String
@@ -6693,7 +6703,9 @@ input ParsedDataInput {
6693
6703
"""Size of this image as reported by image metadata."""
6694
6704
size: Int64
6695
6705
6696
-
"""Information about uncompressed layer sizes."""
6706
+
"""
6707
+
Information about uncompressed layer sizes. The ordered list starts from top layer to base layer.
0 commit comments