From 59af768ca0a40ad2ad641e12089f7fdeb76cfd9d Mon Sep 17 00:00:00 2001 From: StealthyX Date: Mon, 20 Mar 2023 11:10:14 -0400 Subject: [PATCH] Fixed float_property.json to the number value type. (#169) Updated float_property.json to the value type "number" instead of "string" --- source/behavior/entities/filters/filters/float_property.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/behavior/entities/filters/filters/float_property.json b/source/behavior/entities/filters/filters/float_property.json index f9b5b7e6..67c46c92 100644 --- a/source/behavior/entities/filters/filters/float_property.json +++ b/source/behavior/entities/filters/filters/float_property.json @@ -4,7 +4,7 @@ "title": "Float Property", "description": "Returns true when the float actor property matches the value provided.", "required": ["value", "domain"], - "examples": [{ "test": "bool_property", "value": true }], + "examples": [{ "test": "float_property", "value": 1.0 }], "properties": { "test": { "type": "string", @@ -29,7 +29,7 @@ "title": "Subject" }, "value": { - "type": "string", + "type": "number", "title": "Value", "description": "(Required) A floating point value." }