cmevs-erp-eval / code /metadata_examples /per_step_log.schema.json
anon-cmevs-2026's picture
Initial release: metadata, code, adapters (v1.0; scenes/ in next commit)
77731f3 verified
raw
history blame
466 Bytes
{
"$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"}
}
}