From 748380c056913268fa72481c2ad35b7263f64807 Mon Sep 17 00:00:00 2001 From: Bill Riehl Date: Tue, 10 Dec 2024 08:57:46 -0500 Subject: [PATCH] update schema --- import_specifications/schema/dts_manifest.json | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/import_specifications/schema/dts_manifest.json b/import_specifications/schema/dts_manifest.json index fc70d7ef..07578596 100644 --- a/import_specifications/schema/dts_manifest.json +++ b/import_specifications/schema/dts_manifest.json @@ -13,7 +13,20 @@ "type": "object", "properties": { "data_type": {"type": "string"}, - "parameters": {"type": "object"} + "parameters": { + "type": "object", + "patternProperties": { + ".*": { + "oneOf": [ + {"type": "string"}, + {"type": "number"}, + {"type": "boolean"}, + {"type": "null"} + ] + } + }, + "additionalProperties": false + } }, "required": ["data_type", "parameters"] }