{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EvaluationSummaryStatistics", "title": "EvaluationSummaryStatistics", "type": "object", "properties": { "total_analyzed": { "type": "integer" }, "pass_count": { "type": "integer" }, "fail_count": { "type": "integer" }, "na_count": { "type": "integer" } }, "required": [ "fail_count", "na_count", "pass_count", "total_analyzed" ] }