From 900e34ded22381915da55209ce985a86cc06ee2f Mon Sep 17 00:00:00 2001 From: Yurii Date: Fri, 12 Dec 2025 08:39:12 +0200 Subject: [PATCH] json schema decimal field --- schema/metadata/entityDefs.json | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/schema/metadata/entityDefs.json b/schema/metadata/entityDefs.json index 2a1091b3c0..a49ec74435 100644 --- a/schema/metadata/entityDefs.json +++ b/schema/metadata/entityDefs.json @@ -131,7 +131,8 @@ {"const": "multiEnum"}, {"const": "array"}, {"const": "checklist"}, - {"const": "urlMultiple"} + {"const": "urlMultiple"}, + {"const": "decimal"} ] } } @@ -161,7 +162,8 @@ {"const": "multiEnum"}, {"const": "array"}, {"const": "checklist"}, - {"const": "urlMultiple"} + {"const": "urlMultiple"}, + {"const": "decimal"} ] } } @@ -535,7 +537,8 @@ {"const": "checklist"}, {"const": "file"}, {"const": "image"}, - {"const": "enum"} + {"const": "enum"}, + {"const": "decimal"} ] } } @@ -657,7 +660,8 @@ "properties": { "type": { "anyOf": [ - {"const": "float"} + {"const": "float"}, + {"const": "decimal"} ] } } @@ -677,7 +681,8 @@ "type": { "anyOf": [ {"const": "float"}, - {"const": "currency"} + {"const": "currency"}, + {"const": "decimal"} ] } } @@ -893,7 +898,8 @@ "url", "urlMultiple", "varchar", - "wysiwyg" + "wysiwyg", + "decimal" ] } ]