| { |
| "$schema": "https://json-schema.org/draft/2020-12/schema", |
| "$id": "https://ulam.ai/schemas/frontier-math-rl/submission-3.0.json", |
| "title": "Frontier Mathematics RL Submission", |
| "type": "object", |
| "additionalProperties": false, |
| "required": [ |
| "schema_version", |
| "episode_id", |
| "problem_id", |
| "claim_status", |
| "main_result", |
| "claims", |
| "milestone_claims", |
| "proof_or_computation", |
| "adversarial_checks", |
| "literature_used", |
| "unresolved_gaps", |
| "artifacts", |
| "verifier_payloads", |
| "confidence_0_to_1" |
| ], |
| "properties": { |
| "schema_version": { |
| "const": "3.0" |
| }, |
| "episode_id": { |
| "type": "string", |
| "minLength": 1 |
| }, |
| "problem_id": { |
| "type": "string", |
| "pattern": "^sample_(10|[1-9])$" |
| }, |
| "claim_status": { |
| "enum": [ |
| "proved", |
| "disproved", |
| "partial", |
| "inconclusive" |
| ] |
| }, |
| "main_result": { |
| "type": "object", |
| "additionalProperties": false, |
| "required": [ |
| "statement", |
| "status", |
| "scope", |
| "blocks_on_open_dependencies" |
| ], |
| "properties": { |
| "statement": { |
| "type": "string", |
| "minLength": 1 |
| }, |
| "status": { |
| "enum": [ |
| "proved", |
| "reproduced", |
| "inferred", |
| "conjectural", |
| "refuted", |
| "inconclusive" |
| ] |
| }, |
| "scope": { |
| "type": "string", |
| "minLength": 1 |
| }, |
| "blocks_on_open_dependencies": { |
| "type": "boolean" |
| } |
| } |
| }, |
| "claims": { |
| "type": "array", |
| "items": { |
| "type": "object", |
| "additionalProperties": false, |
| "required": [ |
| "claim_id", |
| "statement", |
| "status", |
| "dependencies", |
| "proof_or_evidence", |
| "artifact_refs", |
| "literature_refs", |
| "confidence_0_to_1" |
| ], |
| "properties": { |
| "claim_id": { |
| "type": "string", |
| "pattern": "^[A-Za-z0-9_.-]+$" |
| }, |
| "statement": { |
| "type": "string", |
| "minLength": 1 |
| }, |
| "status": { |
| "enum": [ |
| "proved", |
| "reproduced", |
| "inferred", |
| "conjectural", |
| "refuted", |
| "inconclusive" |
| ] |
| }, |
| "dependencies": { |
| "type": "array", |
| "items": { |
| "type": "string" |
| }, |
| "uniqueItems": true |
| }, |
| "proof_or_evidence": { |
| "type": "string" |
| }, |
| "artifact_refs": { |
| "type": "array", |
| "items": { |
| "type": "string" |
| }, |
| "uniqueItems": true |
| }, |
| "literature_refs": { |
| "type": "array", |
| "items": { |
| "type": "string" |
| }, |
| "uniqueItems": true |
| }, |
| "confidence_0_to_1": { |
| "type": "number", |
| "minimum": 0, |
| "maximum": 1 |
| } |
| } |
| } |
| }, |
| "milestone_claims": { |
| "type": "array", |
| "items": { |
| "type": "object", |
| "additionalProperties": false, |
| "required": [ |
| "milestone_id", |
| "status", |
| "requested_credit_fraction", |
| "evidence_claim_ids", |
| "artifact_refs" |
| ], |
| "properties": { |
| "milestone_id": { |
| "type": "string", |
| "pattern": "^m[1-9][0-9]*$" |
| }, |
| "status": { |
| "enum": [ |
| "not_attempted", |
| "attempted", |
| "verified", |
| "refuted" |
| ] |
| }, |
| "requested_credit_fraction": { |
| "type": "number", |
| "minimum": 0, |
| "maximum": 1 |
| }, |
| "evidence_claim_ids": { |
| "type": "array", |
| "items": { |
| "type": "string" |
| }, |
| "uniqueItems": true |
| }, |
| "artifact_refs": { |
| "type": "array", |
| "items": { |
| "type": "string" |
| }, |
| "uniqueItems": true |
| } |
| } |
| } |
| }, |
| "proof_or_computation": { |
| "type": "string" |
| }, |
| "adversarial_checks": { |
| "type": "array", |
| "items": { |
| "type": "object", |
| "additionalProperties": false, |
| "required": [ |
| "description", |
| "outcome", |
| "impact" |
| ], |
| "properties": { |
| "description": { |
| "type": "string", |
| "minLength": 1 |
| }, |
| "outcome": { |
| "type": "string", |
| "minLength": 1 |
| }, |
| "impact": { |
| "type": "string", |
| "minLength": 1 |
| } |
| } |
| } |
| }, |
| "literature_used": { |
| "type": "array", |
| "items": { |
| "type": "object", |
| "additionalProperties": false, |
| "required": [ |
| "reference_id", |
| "citation", |
| "role", |
| "locator", |
| "verification_status" |
| ], |
| "properties": { |
| "reference_id": { |
| "type": "string", |
| "pattern": "^[A-Za-z0-9_.-]+$" |
| }, |
| "citation": { |
| "type": "string", |
| "minLength": 1 |
| }, |
| "role": { |
| "type": "string", |
| "minLength": 1 |
| }, |
| "locator": { |
| "type": "string" |
| }, |
| "verification_status": { |
| "enum": [ |
| "verified", |
| "not_verified", |
| "not_applicable" |
| ] |
| } |
| } |
| } |
| }, |
| "unresolved_gaps": { |
| "type": "array", |
| "items": { |
| "type": "object", |
| "additionalProperties": false, |
| "required": [ |
| "gap", |
| "blocks_main_claim", |
| "dependency" |
| ], |
| "properties": { |
| "gap": { |
| "type": "string", |
| "minLength": 1 |
| }, |
| "blocks_main_claim": { |
| "type": "boolean" |
| }, |
| "dependency": { |
| "type": "string" |
| } |
| } |
| } |
| }, |
| "artifacts": { |
| "type": "array", |
| "items": { |
| "$ref": "https://ulam.ai/schemas/frontier-math-rl/artifact-manifest-3.0.json" |
| } |
| }, |
| "verifier_payloads": { |
| "type": "object", |
| "additionalProperties": { |
| "type": "object" |
| } |
| }, |
| "confidence_0_to_1": { |
| "type": "number", |
| "minimum": 0, |
| "maximum": 1 |
| }, |
| "notes": { |
| "type": "string" |
| } |
| } |
| } |
|
|