Interface OsvRange

A specific version range entry describing when a vulnerability was introduced and when it was fixed.

interface OsvRange {
    events: OsvRangeEvent[];
    repo?: string;
    type: "SEMVER" | "GIT" | "ECOSYSTEM";
}

Properties

Properties

events: OsvRangeEvent[]

Array of events marking the range boundaries

repo?: string

Repository URL — only present for GIT ranges

type: "SEMVER" | "GIT" | "ECOSYSTEM"

Range type: 'SEMVER', 'GIT', or 'ECOSYSTEM'