From 200b29ead7fdebecf7a89c6a5eddeb9d67fb9043 Mon Sep 17 00:00:00 2001 From: Allaun Silverfox <28494262+allaunthefox@users.noreply.github.com> Date: Sat, 16 May 2026 19:10:51 -0500 Subject: [PATCH] Add autonomous speedrun harness receipt schema --- ...omous_speedrun_harness_receipt.schema.json | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 shared-data/schemas/famm_autonomous_speedrun_harness_receipt.schema.json diff --git a/shared-data/schemas/famm_autonomous_speedrun_harness_receipt.schema.json b/shared-data/schemas/famm_autonomous_speedrun_harness_receipt.schema.json new file mode 100644 index 00000000..ba5323bc --- /dev/null +++ b/shared-data/schemas/famm_autonomous_speedrun_harness_receipt.schema.json @@ -0,0 +1,28 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "title": "FAMM Autonomous Speedrun Harness Receipt", + "type": "object", + "required": [ + "receipt_type", + "schema_version", + "harness", + "scored_experiments", + "summary", + "nuvmap", + "receipt_hash" + ], + "properties": { + "receipt_type": { + "const": "famm_autonomous_speedrun_harness_receipt" + }, + "schema_version": {"type": "string"}, + "source_pattern": {"type": "string"}, + "harness": {"type": "object"}, + "config": {"type": "object"}, + "scored_experiments": {"type": "array", "items": {"type": "object"}}, + "summary": {"type": "object"}, + "nuvmap": {"type": "object"}, + "no_drift_boundary": {"type": "string"}, + "receipt_hash": {"type": "string"} + } +}