benchmarks / schemas /chain_leaders.schema.json
OpenChainBench's picture
snapshot 2026-06-22 (rows: h=26 p=260 ts=52876 cl=0)
f31d13f verified
Raw
History Blame Contribute Delete
1.2 kB
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://huggingface.co/datasets/OpenChainBench/benchmarks/blob/main/schemas/chain_leaders.schema.json",
"title": "OCB chain_leaders row",
"description": "One row per (bench, chain, snapshot_date). Per-chain leader and worst provider for benches whose spec declares a chain dimension. Empty until /api/citable or /api/stat exposes bestPerChain / worstPerChain.",
"type": "object",
"required": [
"snapshot_date",
"captured_at",
"bench_slug",
"chain",
"schema_version"
],
"properties": {
"snapshot_date": { "type": "string", "format": "date" },
"captured_at": { "type": "string", "format": "date-time" },
"bench_slug": { "type": "string" },
"chain": { "type": "string" },
"leader_name": { "type": ["string", "null"] },
"leader_slug": { "type": ["string", "null"] },
"leader_value": { "type": ["number", "null"] },
"worst_name": { "type": ["string", "null"] },
"worst_slug": { "type": ["string", "null"] },
"worst_value": { "type": ["number", "null"] },
"schema_version": { "type": "integer", "minimum": 1 }
}
}