SOTA-Math / schema /showcase.schema.json
przemekch's picture
Release v0.1.0: 20-problem Ulam.ai SOTA Math showcase
0b28a2c verified
Raw
History Blame Contribute Delete
1.69 kB
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://huggingface.co/datasets/ulamai/SOTA-Math/raw/main/schema/showcase.schema.json",
"title": "Ulam.ai SOTA Math showcase record",
"type": "object",
"additionalProperties": false,
"required": [
"schema_version",
"problem_id",
"stream",
"source_record_index",
"title",
"domain",
"task_type",
"difficulty",
"prompt",
"inspiration",
"rationale",
"expected_output",
"research_status",
"rl_ready",
"milestones",
"verification",
"quality_signals",
"license"
],
"properties": {
"schema_version": {"const": "1.0.0"},
"problem_id": {"type": "string", "minLength": 1},
"stream": {
"enum": ["erdos_variant", "aim_ag_rl", "counterexample_variant"]
},
"source_record_index": {"type": "integer", "minimum": 1},
"title": {"type": "string", "minLength": 1},
"domain": {"type": "string", "minLength": 1},
"task_type": {"type": "string", "minLength": 1},
"difficulty": {"type": "string", "minLength": 1},
"prompt": {"type": "string", "minLength": 1},
"inspiration": {"type": "string", "minLength": 1},
"rationale": {"type": "string", "minLength": 1},
"expected_output": {"type": "string", "minLength": 1},
"research_status": {"type": "string", "minLength": 1},
"rl_ready": {"type": "boolean"},
"milestones": {"type": "array", "items": {"type": "string"}},
"verification": {"type": "string", "minLength": 1},
"quality_signals": {
"type": "array",
"minItems": 1,
"items": {"type": "string", "minLength": 1}
},
"license": {"const": "MIT"}
}
}