benchmarks / schemas /timeseries.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 kB
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://huggingface.co/datasets/OpenChainBench/benchmarks/blob/main/schemas/timeseries.schema.json",
"title": "OCB timeseries row",
"description": "One row per (bench, provider, window, point_index, snapshot_date). 24h / 7d / 30d trajectories sourced from /api/series.",
"type": "object",
"required": [
"snapshot_date",
"captured_at",
"bench_slug",
"point_index",
"value",
"window",
"schema_version"
],
"properties": {
"snapshot_date": { "type": "string", "format": "date" },
"captured_at": { "type": "string", "format": "date-time" },
"bench_slug": { "type": "string" },
"provider_slug": { "type": ["string", "null"] },
"point_index": { "type": "integer", "minimum": 0 },
"value": { "type": "number" },
"window": { "type": "string", "enum": ["24h", "7d", "30d"] },
"schema_version": { "type": "integer", "minimum": 1 }
}
}