interface Tag {
    createdAt?: Date;
    digest: string;
    id: string;
    imageId: string;
    name: string;
    status: TagStatus;
    updatedAt?: Date;
}

Properties

createdAt?: Date

Date and time of creation.

digest: string

Hash of the tag content. Several tags of a same image may have the same digest.

id: string

UUID of the tag.

imageId: string

Image ID the of the image the tag belongs to.

name: string

Tag name, unique to an image.

status: TagStatus

Tag status.

updatedAt?: Date

Date and time of last update.