From 1e815ecfbf5f8659524e6d2086339cc5eacfa8d1 Mon Sep 17 00:00:00 2001 From: Matteo Campinoti Date: Wed, 1 Nov 2023 14:55:55 +0100 Subject: [PATCH] Revert "to_convert.schema - add JSON schema for conversion instructions" This reverts commit eabb6a4bcc511a3db57b3c15bed6576b3875c8d3. --- to_convert.schema.json | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 to_convert.schema.json diff --git a/to_convert.schema.json b/to_convert.schema.json deleted file mode 100644 index c6f4a33..0000000 --- a/to_convert.schema.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "to_convert", - "type": "object", - "patternProperties": { - ".*": { - "type": "array", - "items": { - "type": "object", - "required": [ - "converter", - "converter_type", - "outputs" - ], - "properties": { - "description": { - "type": "string" - }, - "converter": { - "type": "string" - }, - "converter_type": { - "type": "string", - "enum": [ - "master", - "statutory", - "access" - ] - }, - "outputs": { - "type": "array", - "items": { - "type": "string" - }, - "minItems": 1 - } - } - } - } - } -} \ No newline at end of file