From 92fdd77593ec2b4fbe7ed61787184fc6747385d6 Mon Sep 17 00:00:00 2001 From: Allaun Silverfox <28494262+allaunthefox@users.noreply.github.com> Date: Sat, 16 May 2026 18:45:37 -0500 Subject: [PATCH] Add MarkovJunior 16D shim receipt schema --- ..._markovjunior_16d_shim_receipt.schema.json | 43 +++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 shared-data/schemas/famm_markovjunior_16d_shim_receipt.schema.json diff --git a/shared-data/schemas/famm_markovjunior_16d_shim_receipt.schema.json b/shared-data/schemas/famm_markovjunior_16d_shim_receipt.schema.json new file mode 100644 index 00000000..43139308 --- /dev/null +++ b/shared-data/schemas/famm_markovjunior_16d_shim_receipt.schema.json @@ -0,0 +1,43 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "title": "FAMM MarkovJunior 16D Shim Receipt", + "type": "object", + "required": [ + "receipt_type", + "schema_version", + "source", + "rules", + "anchors", + "nuvmap", + "receipt_hash" + ], + "properties": { + "receipt_type": { + "const": "famm_markovjunior_16d_shim_receipt" + }, + "schema_version": { + "type": "string" + }, + "source": { + "type": "object" + }, + "rules": { + "type": "array", + "items": { + "type": "object" + } + }, + "anchors": { + "type": "array", + "items": { + "type": "object" + } + }, + "nuvmap": { + "type": "object" + }, + "receipt_hash": { + "type": "string" + } + } +}