data-cap
    Preparing search index...

    Interface SarifLog

    A minimal SARIF 2.1.0 log -- only the properties this adapter actually populates, not the full spec surface.

    interface SarifLog {
        $schema: string;
        runs: readonly {
            results: readonly SarifResult[];
            tool: {
                driver: {
                    informationUri: string;
                    name: string;
                    rules: readonly { id: string }[];
                    version: string;
                };
            };
        }[];
        version: "2.1.0";
    }
    Index
    $schema: string
    runs: readonly {
        results: readonly SarifResult[];
        tool: {
            driver: {
                informationUri: string;
                name: string;
                rules: readonly { id: string }[];
                version: string;
            };
        };
    }[]
    version: "2.1.0"