From ccee49f24b93e7c2675f2d3273054180a332af48 Mon Sep 17 00:00:00 2001 From: sonika-shah <58761340+sonika-shah@users.noreply.github.com> Date: Fri, 11 Apr 2025 10:35:56 +0530 Subject: [PATCH] [Minor] : Fix #19845 Number type custom properties being treated as integer (#20723) --- .../src/main/resources/json/schema/type/basic.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openmetadata-spec/src/main/resources/json/schema/type/basic.json b/openmetadata-spec/src/main/resources/json/schema/type/basic.json index fd732ad7e1c..082b846c879 100644 --- a/openmetadata-spec/src/main/resources/json/schema/type/basic.json +++ b/openmetadata-spec/src/main/resources/json/schema/type/basic.json @@ -12,7 +12,7 @@ "number" : { "$comment" : "@om-field-type", "description": "A numeric type that includes integer or floating point numbers.", - "type" : "integer" + "type" : "number" }, "string" : { "$comment" : "@om-field-type",