Interface OsvCredit

Credit entry for individuals or organizations that contributed to the discovery, reporting, or fix of a vulnerability.

interface OsvCredit {
    contact?: string[];
    name: string;
    type?:
        | "FINDER"
        | "REPORTER"
        | "ANALYST"
        | "COORDINATOR"
        | "REMEDIATION_DEVELOPER"
        | "REMEDIATION_REVIEWER"
        | "REMEDIATION_VERIFIER"
        | "TOOL"
        | "SPONSOR"
        | "OTHER";
}

Properties

Properties

contact?: string[]

Contact information (URLs or emails)

name: string

Name of the credited entity

type?:
    | "FINDER"
    | "REPORTER"
    | "ANALYST"
    | "COORDINATOR"
    | "REMEDIATION_DEVELOPER"
    | "REMEDIATION_REVIEWER"
    | "REMEDIATION_VERIFIER"
    | "TOOL"
    | "SPONSOR"
    | "OTHER"

Type of contribution: 'FINDER', 'REPORTER', 'ANALYST', etc.