using System.Collections.Generic; using System.Text.Json.Serialization; namespace StellaOps.Scanner.Sbomer.BuildXPlugin.Descriptor; /// /// Represents an OCI artifact descriptor emitted by the BuildX generator. /// public sealed record DescriptorArtifact( [property: JsonPropertyName("mediaType")] string MediaType, [property: JsonPropertyName("digest")] string Digest, [property: JsonPropertyName("size")] long Size, [property: JsonPropertyName("annotations")] IReadOnlyDictionary Annotations);