On this pageCheckupLogParserCheckupLogParserโKind: global class new CheckupLogParser()โA class that parses a SARIF checkup log to provide a simpler interface to accessing common properties.Examplelet logParser = new CheckupLogParser(log);for (let rule of logParser.rules) { console.log(rule);}Copy