From 652429377b99085d686d6b907c2f550c304e6b98 Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Mon, 19 May 2025 15:43:14 -0400 Subject: sync --- js/schema.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 js/schema.json (limited to 'js/schema.json') diff --git a/js/schema.json b/js/schema.json new file mode 100644 index 000000000..bc08652e0 --- /dev/null +++ b/js/schema.json @@ -0,0 +1,20 @@ +{ + "type": "object", + "properties": { + "type": { + "const": "storage.write" + }, + "properties": { + "type": "object", + "properties": { + "key": { + "type": "string" + }, + "body": {} + }, + "required": ["key", "body"] + } + }, + "required": ["type", "properties"], + "$schema": "https://json-schema.org/draft-2020-12/schema" +} -- cgit v1.2.3