{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ToleratedHashEntry", "title": "ToleratedHashEntry", "type": "object", "properties": { "id": { "type": "string", "format": "uuid" }, "alternate_hash": { "type": "string" }, "baseline_hash": { "type": "string" }, "reason": { "type": "string" }, "diff_percentage": { "type": "number", "format": "double", "nullable": true }, "created_at": { "type": "string", "format": "date-time" }, "source_run_id": { "type": "string", "format": "uuid", "nullable": true } }, "required": [ "alternate_hash", "baseline_hash", "created_at", "diff_percentage", "id", "reason", "source_run_id" ] }