From 6c196e42eed7d29b2b8c40454f3beee61fd1693a Mon Sep 17 00:00:00 2001 From: Allaun Silverfox <28494262+allaunthefox@users.noreply.github.com> Date: Sun, 17 May 2026 10:12:58 -0500 Subject: [PATCH] Add Plasma Chiral Drag Witness receipt schema --- ...ma_chiral_drag_witness_receipt.schema.json | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 shared-data/schemas/famm_plasma_chiral_drag_witness_receipt.schema.json diff --git a/shared-data/schemas/famm_plasma_chiral_drag_witness_receipt.schema.json b/shared-data/schemas/famm_plasma_chiral_drag_witness_receipt.schema.json new file mode 100644 index 00000000..78c8e7a0 --- /dev/null +++ b/shared-data/schemas/famm_plasma_chiral_drag_witness_receipt.schema.json @@ -0,0 +1,26 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "title": "FAMM Plasma Chiral Drag Witness Receipt", + "type": "object", + "required": [ + "receipt_type", + "schema_version", + "source_model", + "inputs", + "derived", + "famm", + "packet", + "receipt_hash" + ], + "properties": { + "receipt_type": {"const": "famm_plasma_chiral_drag_witness_receipt"}, + "schema_version": {"type": "string"}, + "source_model": {"type": "string"}, + "inputs": {"type": "object"}, + "derived": {"type": "object"}, + "famm": {"type": "object"}, + "packet": {"type": "object"}, + "no_drift_boundary": {"type": "string"}, + "receipt_hash": {"type": "string"} + } +}