File size: 466 Bytes
77731f3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "CM-EVS per-step selection log",
"type": "object",
"required": ["step", "candidate_id", "score", "marginal_gain", "coverage_after"],
"properties": {
"step": {"type": "integer"},
"candidate_id": {"type": "string"},
"score": {"type": "number"},
"marginal_gain": {"type": "number"},
"coverage_after": {"type": "number"},
"conflict_prior": {"type": "number"}
}
}
|