{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BaselineTotals", "title": "BaselineTotals", "type": "object", "properties": { "by_run_type": { "type": "object", "additionalProperties": { "type": "integer" } }, "all_snapshots": { "type": "integer" }, "recently_tolerated": { "type": "integer" }, "frequently_tolerated": { "type": "integer" }, "currently_quarantined": { "type": "integer" } }, "required": [ "all_snapshots", "by_run_type", "currently_quarantined", "frequently_tolerated", "recently_tolerated" ] }