A descriptor struct containing digest, media type, and size, as defined in the OCI Content Descriptors Specification. OCIDescriptor

interface OCIDescriptor {
    digest?: string;
    mediaType?: string;
    size?: number;
}

Properties

digest?: string

The digest of the targeted content.

mediaType?: string

The media type of the object this schema refers to.

size?: number

The size in bytes of the blob.