diff --git a/source/behavior/entities/filters/filters/clock_time.json b/source/behavior/entities/filters/filters/clock_time.json index 345405c0..be3bc70c 100644 --- a/source/behavior/entities/filters/filters/clock_time.json +++ b/source/behavior/entities/filters/filters/clock_time.json @@ -11,13 +11,13 @@ "description": "Compares the current 24 hour time with an int value in the range[0, 24000]" }, "operator": { - "$ref": "./types/base_operator.json", + "$ref": "./types/operator.json", "description": "(Optional) The comparison to apply with 'value'.", "default": "equals", "title": "Operator" }, "subject": { - "$ref": "./types/base_subject.json", + "$ref": "./types/subject.json", "description": "(Optional) The subject of this filter test.", "default": "self", "title": "Subject" diff --git a/source/behavior/entities/filters/filters/distance_to_nearest_player.json b/source/behavior/entities/filters/filters/distance_to_nearest_player.json index 37381ef1..45045c21 100644 --- a/source/behavior/entities/filters/filters/distance_to_nearest_player.json +++ b/source/behavior/entities/filters/filters/distance_to_nearest_player.json @@ -6,8 +6,8 @@ "required": ["value"], "properties": { "test": { "type": "string", "title": "Test Property", "description": "Compares the distance to the nearest Player with a float value." }, - "operator": { "$ref": "./types/base_operator.json", "description": "(Optional) The comparison to apply with 'value'.", "title": "Operator" }, - "subject": { "$ref": "./types/base_subject.json", "description": "(Optional) The subject of this filter test.", "title": "Subject" }, + "operator": { "$ref": "./types/operator.json", "description": "(Optional) The comparison to apply with 'value'.", "title": "Operator" }, + "subject": { "$ref": "./types/subject.json", "description": "(Optional) The subject of this filter test.", "title": "Subject" }, "value": { "type": "number", "description": "(Required) A floating point value.", "title": "Value" } } } diff --git a/source/behavior/entities/filters/filters/has_ability.json b/source/behavior/entities/filters/filters/has_ability.json index 5706a547..3b244933 100644 --- a/source/behavior/entities/filters/filters/has_ability.json +++ b/source/behavior/entities/filters/filters/has_ability.json @@ -6,8 +6,8 @@ "required": ["value"], "properties": { "test": { "type": "string", "title": "Test Property", "description": "Returns true when the subject entity has the named ability." }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "type": "string", "description": "(Required) The Ability type to test", diff --git a/source/behavior/entities/filters/filters/has_biome_tag.json b/source/behavior/entities/filters/filters/has_biome_tag.json index 4f229fb1..cc79f29e 100644 --- a/source/behavior/entities/filters/filters/has_biome_tag.json +++ b/source/behavior/entities/filters/filters/has_biome_tag.json @@ -6,8 +6,8 @@ "required": ["value"], "properties": { "test": { "type": "string", "title": "Test Property", "description": "Tests whether the biome the subject is in has the specified tag." }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "description": "(Required) The tag to look for", "type": "string", "title": "Value" } } } diff --git a/source/behavior/entities/filters/filters/has_component.json b/source/behavior/entities/filters/filters/has_component.json index 86ca2a81..50fbf5ed 100644 --- a/source/behavior/entities/filters/filters/has_component.json +++ b/source/behavior/entities/filters/filters/has_component.json @@ -6,8 +6,8 @@ "required": ["value"], "properties": { "test": { "type": "string", "title": "Test Property", "description": "Returns true when the subject entity contains the named component." }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "type": "string", "description": "TODO description: value", "title": "Value" } } } diff --git a/source/behavior/entities/filters/filters/has_container_open.json b/source/behavior/entities/filters/filters/has_container_open.json index 3cadc472..6dbd8540 100644 --- a/source/behavior/entities/filters/filters/has_container_open.json +++ b/source/behavior/entities/filters/filters/has_container_open.json @@ -5,8 +5,8 @@ "description": "Returns true when the subject Player entity has opened a container.", "properties": { "test": { "type": "string", "title": "Test", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "description": "True or false.", "oneOf": [ diff --git a/source/behavior/entities/filters/filters/has_damage.json b/source/behavior/entities/filters/filters/has_damage.json index f2325f39..79071631 100644 --- a/source/behavior/entities/filters/filters/has_damage.json +++ b/source/behavior/entities/filters/filters/has_damage.json @@ -6,8 +6,8 @@ "required": ["value"], "properties": { "test": { "type": "string", "title": "Test Property", "description": "Returns true when the subject entity receives the named damage type." }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "type": "string", "description": "The Damage type to test", "$ref": "../../../../general/entity/damage_source.json", "title": "Value" } } } diff --git a/source/behavior/entities/filters/filters/has_equipment.json b/source/behavior/entities/filters/filters/has_equipment.json index 9295d98a..e92ae453 100644 --- a/source/behavior/entities/filters/filters/has_equipment.json +++ b/source/behavior/entities/filters/filters/has_equipment.json @@ -17,8 +17,8 @@ "enum": ["any", "armor", "feet", "hand", "head", "leg", "torso"], "title": "Domain" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "description": "The item name to look for", "type": "string", diff --git a/source/behavior/entities/filters/filters/has_mob_effect.json b/source/behavior/entities/filters/filters/has_mob_effect.json index 2904f7e0..3872cc4a 100644 --- a/source/behavior/entities/filters/filters/has_mob_effect.json +++ b/source/behavior/entities/filters/filters/has_mob_effect.json @@ -6,8 +6,8 @@ "required": ["value"], "properties": { "test": { "type": "string", "title": "Test Property", "description": "Tests whether the Subject has the specified mob effect." }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "type": "string", "description": "TODO description: value", "title": "Value" } } } diff --git a/source/behavior/entities/filters/filters/has_ranged_weapon.json b/source/behavior/entities/filters/filters/has_ranged_weapon.json index d2819105..0d53286c 100644 --- a/source/behavior/entities/filters/filters/has_ranged_weapon.json +++ b/source/behavior/entities/filters/filters/has_ranged_weapon.json @@ -5,8 +5,8 @@ "description": "Returns true when the subject entity is holding a ranged weapon like a bow or crossbow.", "properties": { "test": { "type": "string", "title": "Test", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "description": "True or false.", "oneOf": [ diff --git a/source/behavior/entities/filters/filters/has_tag.json b/source/behavior/entities/filters/filters/has_tag.json index e894022e..5d7e6f07 100644 --- a/source/behavior/entities/filters/filters/has_tag.json +++ b/source/behavior/entities/filters/filters/has_tag.json @@ -6,8 +6,8 @@ "required": ["value"], "properties": { "test": { "type": "string", "title": "Test Property", "description": "Returns true if the subject entity has the tag provided." }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "type": "string", "description": "The tag as a string", "pattern": "[a-zA-Z0-9_]+", "title": "Value" } } } diff --git a/source/behavior/entities/filters/filters/has_target.json b/source/behavior/entities/filters/filters/has_target.json index 1ba9261c..db4a1d8a 100644 --- a/source/behavior/entities/filters/filters/has_target.json +++ b/source/behavior/entities/filters/filters/has_target.json @@ -5,8 +5,8 @@ "description": "Returns true if the subject entity has a valid target.", "properties": { "test": { "type": "string", "title": "Test", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "description": "True or false.", "oneOf": [ diff --git a/source/behavior/entities/filters/filters/has_trade_supply.json b/source/behavior/entities/filters/filters/has_trade_supply.json index 6b1d0b9a..f2898050 100644 --- a/source/behavior/entities/filters/filters/has_trade_supply.json +++ b/source/behavior/entities/filters/filters/has_trade_supply.json @@ -9,8 +9,8 @@ "title": "Test Property", "description": "Tests whether the target has any trade supply left. Will return false if the target cannot be traded with." }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "title": "Value", "description": "True or false.", diff --git a/source/behavior/entities/filters/filters/hourly_clock_time.json b/source/behavior/entities/filters/filters/hourly_clock_time.json index 71f13123..1dd707c9 100644 --- a/source/behavior/entities/filters/filters/hourly_clock_time.json +++ b/source/behavior/entities/filters/filters/hourly_clock_time.json @@ -11,8 +11,8 @@ "description": "Compares the current 24 hour time with an int value in the range[0, 24000]", "const": "hourly_clock_time" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "type": "integer", "description": "An integer value.", "minimum": 0, "maximum": 24000, "title": "Value" } } } diff --git a/source/behavior/entities/filters/filters/in_block.json b/source/behavior/entities/filters/filters/in_block.json index 021174c5..63de9487 100644 --- a/source/behavior/entities/filters/filters/in_block.json +++ b/source/behavior/entities/filters/filters/in_block.json @@ -10,13 +10,13 @@ "description": "Returns true when the subject entity is inside a specified Block type." }, "operator": { - "$ref": "./types/base_operator.json", + "$ref": "./types/operator.json", "description": "(Optional) The comparison to apply with 'value'.", "default": "equals", "title": "Operator" }, "subject": { - "$ref": "./types/base_subject.json", + "$ref": "./types/subject.json", "description": "(Optional) The subject of this filter test.", "default": "self", "title": "Subject" diff --git a/source/behavior/entities/filters/filters/in_caravan.json b/source/behavior/entities/filters/filters/in_caravan.json index 3bd0959f..18b418b9 100644 --- a/source/behavior/entities/filters/filters/in_caravan.json +++ b/source/behavior/entities/filters/filters/in_caravan.json @@ -5,8 +5,8 @@ "description": "Returns true if the subject entity is in a caravan.", "properties": { "test": { "type": "string", "title": "Test Property", "description": "Returns true if the subject entity is in a caravan." }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "title": "Value", "description": "True or false.", diff --git a/source/behavior/entities/filters/filters/in_clouds.json b/source/behavior/entities/filters/filters/in_clouds.json index 1b0c6fc8..44fdf847 100644 --- a/source/behavior/entities/filters/filters/in_clouds.json +++ b/source/behavior/entities/filters/filters/in_clouds.json @@ -5,8 +5,8 @@ "description": "Returns true when the subject entity is in the clouds.", "properties": { "test": { "type": "string", "title": "Test Property", "description": "Returns true when the subject entity is in the clouds." }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "title": "Value", "description": "True or false.", diff --git a/source/behavior/entities/filters/filters/in_contact_with_water.json b/source/behavior/entities/filters/filters/in_contact_with_water.json index 27094592..04c11029 100644 --- a/source/behavior/entities/filters/filters/in_contact_with_water.json +++ b/source/behavior/entities/filters/filters/in_contact_with_water.json @@ -9,8 +9,8 @@ "title": "Test Property", "description": "Returns true when the subject entity in contact with any water: water, rain, splash water bottle." }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "title": "Value", "description": "(Optional) true or false.", diff --git a/source/behavior/entities/filters/filters/in_lava.json b/source/behavior/entities/filters/filters/in_lava.json index 48689af0..cbcb38a0 100644 --- a/source/behavior/entities/filters/filters/in_lava.json +++ b/source/behavior/entities/filters/filters/in_lava.json @@ -5,8 +5,8 @@ "description": "Returns true when the subject entity is in lava.", "properties": { "test": { "type": "string", "title": "Test Property", "description": "Returns true when the subject entity is in lava." }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "title": "Value", "description": "True or false.", diff --git a/source/behavior/entities/filters/filters/in_nether.json b/source/behavior/entities/filters/filters/in_nether.json index fd7de590..81bcb326 100644 --- a/source/behavior/entities/filters/filters/in_nether.json +++ b/source/behavior/entities/filters/filters/in_nether.json @@ -5,8 +5,8 @@ "description": "Returns true when the subject entity is in Nether.", "properties": { "test": { "type": "string", "title": "Test", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "description": "True or false.", "oneOf": [ diff --git a/source/behavior/entities/filters/filters/in_water.json b/source/behavior/entities/filters/filters/in_water.json index 4c9d88cf..9390f868 100644 --- a/source/behavior/entities/filters/filters/in_water.json +++ b/source/behavior/entities/filters/filters/in_water.json @@ -5,8 +5,8 @@ "description": "Returns true when the subject entity is in water.", "properties": { "test": { "type": "string", "title": "Test Property", "description": "Returns true when the subject entity is in water." }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "title": "Value", "description": "True or false.", diff --git a/source/behavior/entities/filters/filters/in_water_or_rain.json b/source/behavior/entities/filters/filters/in_water_or_rain.json index 5a4bf735..0e1c8b79 100644 --- a/source/behavior/entities/filters/filters/in_water_or_rain.json +++ b/source/behavior/entities/filters/filters/in_water_or_rain.json @@ -5,8 +5,8 @@ "description": "Returns true when the subject entity is in water or rain.", "properties": { "test": { "type": "string", "title": "Test Property", "description": "Returns true when the subject entity is in water or rain." }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "title": "Value", "description": "True or false.", diff --git a/source/behavior/entities/filters/filters/inactivity_timer.json b/source/behavior/entities/filters/filters/inactivity_timer.json index 1c8ac457..7f3a6e19 100644 --- a/source/behavior/entities/filters/filters/inactivity_timer.json +++ b/source/behavior/entities/filters/filters/inactivity_timer.json @@ -6,8 +6,8 @@ "required": ["value"], "properties": { "test": { "type": "string", "title": "Test", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "description": "The Family name to look for", "type": "integer", "title": "Value" } } } diff --git a/source/behavior/entities/filters/filters/is_altitude.json b/source/behavior/entities/filters/filters/is_altitude.json index 353c3dfe..130ec2a1 100644 --- a/source/behavior/entities/filters/filters/is_altitude.json +++ b/source/behavior/entities/filters/filters/is_altitude.json @@ -10,8 +10,8 @@ "title": "Test Property", "description": "Tests the current altitude against a provided value. 0= bedrock elevation." }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "type": "integer", "description": "The altitude value to compare with", "minimum": 0, "title": "Value" } } } diff --git a/source/behavior/entities/filters/filters/is_avoiding_mobs.json b/source/behavior/entities/filters/filters/is_avoiding_mobs.json index 8cf4cd1c..e507c840 100644 --- a/source/behavior/entities/filters/filters/is_avoiding_mobs.json +++ b/source/behavior/entities/filters/filters/is_avoiding_mobs.json @@ -5,8 +5,8 @@ "description": "Returns true if the subject entity is fleeing from other mobs.", "properties": { "test": { "type": "string", "title": "Test Property", "description": "Returns true if the subject entity is fleeing from other mobs." }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "title": "Value", "description": "True or false.", diff --git a/source/behavior/entities/filters/filters/is_biome.json b/source/behavior/entities/filters/filters/is_biome.json index b01e633c..81b8c712 100644 --- a/source/behavior/entities/filters/filters/is_biome.json +++ b/source/behavior/entities/filters/filters/is_biome.json @@ -6,8 +6,8 @@ "required": ["value"], "properties": { "test": { "type": "string", "title": "Test Property", "description": "Tests whether the Subject is currently in the named biome." }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "description": "The Biome type to test", "type": "string", diff --git a/source/behavior/entities/filters/filters/is_block.json b/source/behavior/entities/filters/filters/is_block.json index ea5d8021..3e7f2571 100644 --- a/source/behavior/entities/filters/filters/is_block.json +++ b/source/behavior/entities/filters/filters/is_block.json @@ -6,8 +6,8 @@ "required": ["value"], "properties": { "test": { "type": "string", "title": "Test", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "description": "The Family name to look for", "type": "string", "title": "Value" } } } diff --git a/source/behavior/entities/filters/filters/is_brightness.json b/source/behavior/entities/filters/filters/is_brightness.json index e947e230..c5537d02 100644 --- a/source/behavior/entities/filters/filters/is_brightness.json +++ b/source/behavior/entities/filters/filters/is_brightness.json @@ -10,8 +10,8 @@ "title": "Test Property", "description": "Tests the current brightness against a provided value in the range (0.0f, 1.0f)." }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "description": "The brightness value to compare with.", "type": "number", "minimum": 0.0, "maximum": 1.0, "title": "Value" } } } diff --git a/source/behavior/entities/filters/filters/is_climbing.json b/source/behavior/entities/filters/filters/is_climbing.json index 119a77dd..c02bf709 100644 --- a/source/behavior/entities/filters/filters/is_climbing.json +++ b/source/behavior/entities/filters/filters/is_climbing.json @@ -5,8 +5,8 @@ "description": "Returns true if the subject entity is climbing.", "properties": { "test": { "type": "string", "title": "Test Property", "description": "Returns true if the subject entity is climbing." }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "title": "Value", "description": "True or false.", diff --git a/source/behavior/entities/filters/filters/is_color.json b/source/behavior/entities/filters/filters/is_color.json index aa664e55..0bee4bbf 100644 --- a/source/behavior/entities/filters/filters/is_color.json +++ b/source/behavior/entities/filters/filters/is_color.json @@ -6,8 +6,8 @@ "required": ["value"], "properties": { "test": { "type": "string", "title": "Test Property", "description": "Returns true if the subject entity is the named color." }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "description": "The Palette Color to test", "type": "string", diff --git a/source/behavior/entities/filters/filters/is_daytime.json b/source/behavior/entities/filters/filters/is_daytime.json index 80d7087d..fa85395b 100644 --- a/source/behavior/entities/filters/filters/is_daytime.json +++ b/source/behavior/entities/filters/filters/is_daytime.json @@ -5,8 +5,8 @@ "description": "Returns true during the daylight hours.", "properties": { "test": { "type": "string", "title": "Test Property", "description": "Returns true during the daylight hours." }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "title": "Value", "description": "True or false.", diff --git a/source/behavior/entities/filters/filters/is_difficulty.json b/source/behavior/entities/filters/filters/is_difficulty.json index 83d379a8..b1b4cb98 100644 --- a/source/behavior/entities/filters/filters/is_difficulty.json +++ b/source/behavior/entities/filters/filters/is_difficulty.json @@ -6,8 +6,8 @@ "required": ["value"], "properties": { "test": { "type": "string", "title": "Test Property", "description": "Tests the current difficulty level of the game." }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "description": "The game's difficulty level to test", "type": "string", diff --git a/source/behavior/entities/filters/filters/is_family.json b/source/behavior/entities/filters/filters/is_family.json index e8dd201e..e3c6f65a 100644 --- a/source/behavior/entities/filters/filters/is_family.json +++ b/source/behavior/entities/filters/filters/is_family.json @@ -6,8 +6,8 @@ "required": ["value"], "properties": { "test": { "type": "string", "title": "Test Property", "description": "Returns true when the subject entity is a member of the named family." }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "description": "The Family name to look for", "type": "string", "title": "Value" } } } diff --git a/source/behavior/entities/filters/filters/is_game_rule.json b/source/behavior/entities/filters/filters/is_game_rule.json index 76f5ff27..6c36f17b 100644 --- a/source/behavior/entities/filters/filters/is_game_rule.json +++ b/source/behavior/entities/filters/filters/is_game_rule.json @@ -6,8 +6,8 @@ "required": ["domain"], "properties": { "domain": { "description": "The Game Rule to test.", "title": "Domain" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "description": "Tests whether a named game rule is active.", "default": true, "type": "boolean", "title": "Value" } } } diff --git a/source/behavior/entities/filters/filters/is_humid.json b/source/behavior/entities/filters/filters/is_humid.json index 94df05e6..437d9f7c 100644 --- a/source/behavior/entities/filters/filters/is_humid.json +++ b/source/behavior/entities/filters/filters/is_humid.json @@ -5,8 +5,8 @@ "description": "Tests whether the Subject is in an area with humidity", "properties": { "test": { "type": "string", "title": "Test Property", "description": "Tests whether the Subject is in an area with humidity" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "title": "Value", "description": "True or false.", diff --git a/source/behavior/entities/filters/filters/is_immobile.json b/source/behavior/entities/filters/filters/is_immobile.json index 12e88bdc..2321f1e0 100644 --- a/source/behavior/entities/filters/filters/is_immobile.json +++ b/source/behavior/entities/filters/filters/is_immobile.json @@ -5,8 +5,8 @@ "description": "Returns true if the subject entity is immobile. An entity is immobile if it lacks AI goals, has just changed dimensions or if it is a mob and has no health.", "properties": { "test": { "type": "string", "title": "Test Property", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "title": "Value", "description": "True or false.", diff --git a/source/behavior/entities/filters/filters/is_in_village.json b/source/behavior/entities/filters/filters/is_in_village.json index a7f4e87d..3903f892 100644 --- a/source/behavior/entities/filters/filters/is_in_village.json +++ b/source/behavior/entities/filters/filters/is_in_village.json @@ -5,8 +5,8 @@ "description": "Tests whether the Subject is inside the bounds of a village.", "properties": { "test": { "type": "string", "title": "Test Property", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "title": "Value", "description": "True or false.", diff --git a/source/behavior/entities/filters/filters/is_leashed.json b/source/behavior/entities/filters/filters/is_leashed.json index 16225440..c6267c50 100644 --- a/source/behavior/entities/filters/filters/is_leashed.json +++ b/source/behavior/entities/filters/filters/is_leashed.json @@ -5,8 +5,8 @@ "description": "Returns true if the subject entity is leashed.", "properties": { "test": { "type": "string", "title": "Test Property", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "title": "Value", "description": "True or false.", diff --git a/source/behavior/entities/filters/filters/is_leashed_to.json b/source/behavior/entities/filters/filters/is_leashed_to.json index b30c5565..0b1942a2 100644 --- a/source/behavior/entities/filters/filters/is_leashed_to.json +++ b/source/behavior/entities/filters/filters/is_leashed_to.json @@ -5,8 +5,8 @@ "description": "Returns true if the subject entity leashed to the calling entity.", "properties": { "test": { "type": "string", "title": "Test", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "description": "True or false.", "oneOf": [ diff --git a/source/behavior/entities/filters/filters/is_mark_variant.json b/source/behavior/entities/filters/filters/is_mark_variant.json index ea3a62a5..45d09e66 100644 --- a/source/behavior/entities/filters/filters/is_mark_variant.json +++ b/source/behavior/entities/filters/filters/is_mark_variant.json @@ -5,8 +5,8 @@ "description": "Returns true if the subject entity is the mark variant number provided.", "properties": { "test": { "type": "string", "title": "Test Property", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "type": "integer", "description": "The altitude value to compare with", "minimum": 0, "title": "Value" } }, "additionalProperties": false diff --git a/source/behavior/entities/filters/filters/is_moving.json b/source/behavior/entities/filters/filters/is_moving.json index dbbee40a..d53aeb9d 100644 --- a/source/behavior/entities/filters/filters/is_moving.json +++ b/source/behavior/entities/filters/filters/is_moving.json @@ -5,8 +5,8 @@ "description": "Returns true if the subject entity is moving.", "properties": { "test": { "type": "string", "title": "Test Property", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "title": "Value", "description": "True or false.", diff --git a/source/behavior/entities/filters/filters/is_owner.json b/source/behavior/entities/filters/filters/is_owner.json index fcb63acf..47fcc409 100644 --- a/source/behavior/entities/filters/filters/is_owner.json +++ b/source/behavior/entities/filters/filters/is_owner.json @@ -5,8 +5,8 @@ "description": "Returns true if the subject entity is the owner of the calling entity.", "properties": { "test": { "type": "string", "title": "Test Property", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "title": "Value", "description": "True or false.", diff --git a/source/behavior/entities/filters/filters/is_persistent.json b/source/behavior/entities/filters/filters/is_persistent.json index e866fef0..5c70719f 100644 --- a/source/behavior/entities/filters/filters/is_persistent.json +++ b/source/behavior/entities/filters/filters/is_persistent.json @@ -5,8 +5,8 @@ "description": "Tests if the subject's persistence matches the bool value passed in.", "properties": { "test": { "type": "string", "title": "Test", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "description": "True or false.", "oneOf": [ diff --git a/source/behavior/entities/filters/filters/is_riding.json b/source/behavior/entities/filters/filters/is_riding.json index 77d3344e..86137291 100644 --- a/source/behavior/entities/filters/filters/is_riding.json +++ b/source/behavior/entities/filters/filters/is_riding.json @@ -5,8 +5,8 @@ "description": "Returns true if the subject entity is riding on another entity.", "properties": { "test": { "type": "string", "title": "Test Property", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "title": "Value", "description": "True or false.", diff --git a/source/behavior/entities/filters/filters/is_skin_id.json b/source/behavior/entities/filters/filters/is_skin_id.json index 26057f8e..e9b57403 100644 --- a/source/behavior/entities/filters/filters/is_skin_id.json +++ b/source/behavior/entities/filters/filters/is_skin_id.json @@ -5,8 +5,8 @@ "description": "Returns true if the subject entity is the skin id number provided.", "properties": { "test": { "type": "string", "title": "Test Property", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "type": "integer", "description": "The altitude value to compare with", "title": "Value" } } } diff --git a/source/behavior/entities/filters/filters/is_sleeping.json b/source/behavior/entities/filters/filters/is_sleeping.json index ad09cb96..16fe08bb 100644 --- a/source/behavior/entities/filters/filters/is_sleeping.json +++ b/source/behavior/entities/filters/filters/is_sleeping.json @@ -5,8 +5,8 @@ "description": "Tests whether the Subject is sleeping.", "properties": { "test": { "type": "string", "title": "Test", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "description": "True or false.", "oneOf": [ diff --git a/source/behavior/entities/filters/filters/is_sneaking.json b/source/behavior/entities/filters/filters/is_sneaking.json index a77be711..18279e4a 100644 --- a/source/behavior/entities/filters/filters/is_sneaking.json +++ b/source/behavior/entities/filters/filters/is_sneaking.json @@ -5,8 +5,8 @@ "description": "Returns true if the subject entity is sneaking.", "properties": { "test": { "type": "string", "title": "Test Property", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "title": "Value", "description": "True or false.", diff --git a/source/behavior/entities/filters/filters/is_snow_covered.json b/source/behavior/entities/filters/filters/is_snow_covered.json index c915426a..be48ccc2 100644 --- a/source/behavior/entities/filters/filters/is_snow_covered.json +++ b/source/behavior/entities/filters/filters/is_snow_covered.json @@ -5,8 +5,8 @@ "description": "Tests whether the Subject is in an area with snow cover", "properties": { "test": { "type": "string", "title": "Test Property", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "title": "Value", "description": "True or false.", diff --git a/source/behavior/entities/filters/filters/is_target.json b/source/behavior/entities/filters/filters/is_target.json index 39a90bd4..801b1343 100644 --- a/source/behavior/entities/filters/filters/is_target.json +++ b/source/behavior/entities/filters/filters/is_target.json @@ -5,8 +5,8 @@ "description": "Returns true if the subject entity is the target of the calling entity.", "properties": { "test": { "type": "string", "title": "Test Property", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "title": "Value", "description": "True or false.", diff --git a/source/behavior/entities/filters/filters/is_temperature_type.json b/source/behavior/entities/filters/filters/is_temperature_type.json index a2b1c16b..96377fb3 100644 --- a/source/behavior/entities/filters/filters/is_temperature_type.json +++ b/source/behavior/entities/filters/filters/is_temperature_type.json @@ -6,8 +6,8 @@ "required": ["value"], "properties": { "test": { "type": "string", "title": "Test Property", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "description": "The Biome temperature catagory to test", "type": "string", diff --git a/source/behavior/entities/filters/filters/is_temperature_value.json b/source/behavior/entities/filters/filters/is_temperature_value.json index 68d4001d..3399bec7 100644 --- a/source/behavior/entities/filters/filters/is_temperature_value.json +++ b/source/behavior/entities/filters/filters/is_temperature_value.json @@ -6,8 +6,8 @@ "required": ["value"], "properties": { "test": { "type": "string", "title": "Test Property", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "description": "The Biome temperature value to compare with.", "type": "number", "minimum": 0.0, "maximum": 1.0, "title": "Value" } } } diff --git a/source/behavior/entities/filters/filters/is_underground.json b/source/behavior/entities/filters/filters/is_underground.json index 65510b5f..458ed276 100644 --- a/source/behavior/entities/filters/filters/is_underground.json +++ b/source/behavior/entities/filters/filters/is_underground.json @@ -5,8 +5,8 @@ "description": "Returns true when the subject entity is underground. An entity is considered underground if there are non-solid blocks above it.", "properties": { "test": { "type": "string", "title": "Test Property", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "title": "Value", "description": "True or false.", diff --git a/source/behavior/entities/filters/filters/is_underwater.json b/source/behavior/entities/filters/filters/is_underwater.json index 97c696f7..01204aa4 100644 --- a/source/behavior/entities/filters/filters/is_underwater.json +++ b/source/behavior/entities/filters/filters/is_underwater.json @@ -5,8 +5,8 @@ "description": "Returns true when the subject entity is under water. An entity is considered underwater if it is completely submerged in water blocks.", "properties": { "test": { "type": "string", "title": "Test Property", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "title": "Value", "description": "True or false.", diff --git a/source/behavior/entities/filters/filters/is_variant.json b/source/behavior/entities/filters/filters/is_variant.json index d598fa64..e72a6ab8 100644 --- a/source/behavior/entities/filters/filters/is_variant.json +++ b/source/behavior/entities/filters/filters/is_variant.json @@ -6,8 +6,8 @@ "required": ["value"], "properties": { "test": { "type": "string", "title": "Test Property", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "type": "integer", "description": "The altitude value to compare with", "title": "Value" } } } diff --git a/source/behavior/entities/filters/filters/is_visible.json b/source/behavior/entities/filters/filters/is_visible.json index ac41164e..adf9e760 100644 --- a/source/behavior/entities/filters/filters/is_visible.json +++ b/source/behavior/entities/filters/filters/is_visible.json @@ -5,8 +5,8 @@ "description": "Returns true if the subject entity is visible.", "properties": { "test": { "type": "string", "title": "Test Property", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "title": "Value", "description": "True or false.", diff --git a/source/behavior/entities/filters/filters/light_level.json b/source/behavior/entities/filters/filters/light_level.json index 4130281d..2319a4a1 100644 --- a/source/behavior/entities/filters/filters/light_level.json +++ b/source/behavior/entities/filters/filters/light_level.json @@ -6,8 +6,8 @@ "required": ["value"], "properties": { "test": { "type": "string", "title": "Test", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "description": "An integer value.", "type": "integer", "title": "Value", "minimum": 0, "maximum": 16 } } } diff --git a/source/behavior/entities/filters/filters/moon_intensity.json b/source/behavior/entities/filters/filters/moon_intensity.json index 85e77c0b..34c3cb1e 100644 --- a/source/behavior/entities/filters/filters/moon_intensity.json +++ b/source/behavior/entities/filters/filters/moon_intensity.json @@ -6,8 +6,8 @@ "required": ["value"], "properties": { "test": { "type": "string", "title": "Test Property", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "description": "A floating point value.", "type": "number", "minimum": 0, "maximum": 1, "title": "Value" } } } diff --git a/source/behavior/entities/filters/filters/moon_phase.json b/source/behavior/entities/filters/filters/moon_phase.json index 12bb0fd3..027e1fb5 100644 --- a/source/behavior/entities/filters/filters/moon_phase.json +++ b/source/behavior/entities/filters/filters/moon_phase.json @@ -6,8 +6,8 @@ "required": ["value"], "properties": { "test": { "type": "string", "title": "Test Property", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "type": "integer", "description": "An integer value.", "minimum": 0, "maximum": 7, "title": "Value" } } } diff --git a/source/behavior/entities/filters/filters/on_ground.json b/source/behavior/entities/filters/filters/on_ground.json index 00109e6d..7665e5a0 100644 --- a/source/behavior/entities/filters/filters/on_ground.json +++ b/source/behavior/entities/filters/filters/on_ground.json @@ -5,8 +5,8 @@ "description": "Returns true when the subject entity is on ground.", "properties": { "test": { "type": "string", "title": "Test Property", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "title": "Value", "description": "True or false.", diff --git a/source/behavior/entities/filters/filters/on_ladder.json b/source/behavior/entities/filters/filters/on_ladder.json index 305380c9..d879db80 100644 --- a/source/behavior/entities/filters/filters/on_ladder.json +++ b/source/behavior/entities/filters/filters/on_ladder.json @@ -5,8 +5,8 @@ "description": "Returns true when the subject entity is on a ladder.", "properties": { "test": { "type": "string", "title": "Test Property", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "title": "Value", "description": "True or false.", diff --git a/source/behavior/entities/filters/filters/random_chance.json b/source/behavior/entities/filters/filters/random_chance.json index 39e99bf3..b751aef1 100644 --- a/source/behavior/entities/filters/filters/random_chance.json +++ b/source/behavior/entities/filters/filters/random_chance.json @@ -6,8 +6,8 @@ "required": ["value"], "properties": { "test": { "type": "string", "title": "Test", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "description": "An integer value.", "type": "integer", "title": "Value" } } } diff --git a/source/behavior/entities/filters/filters/rider_count.json b/source/behavior/entities/filters/filters/rider_count.json index 462e5782..bab6496e 100644 --- a/source/behavior/entities/filters/filters/rider_count.json +++ b/source/behavior/entities/filters/filters/rider_count.json @@ -6,8 +6,8 @@ "required": ["value"], "properties": { "test": { "type": "string", "title": "Test", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "description": "An integer value.", "type": "integer", "title": "Value" } } } diff --git a/source/behavior/entities/filters/filters/surface_mob.json b/source/behavior/entities/filters/filters/surface_mob.json index 99623bb9..9457385b 100644 --- a/source/behavior/entities/filters/filters/surface_mob.json +++ b/source/behavior/entities/filters/filters/surface_mob.json @@ -5,8 +5,8 @@ "description": "Tests if the subject is a surface mob.", "properties": { "test": { "type": "string", "title": "Test", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "description": "True or false.", "oneOf": [ diff --git a/source/behavior/entities/filters/filters/trusts.json b/source/behavior/entities/filters/filters/trusts.json index d7a6b3c8..65e342f4 100644 --- a/source/behavior/entities/filters/filters/trusts.json +++ b/source/behavior/entities/filters/filters/trusts.json @@ -5,8 +5,8 @@ "description": "Returns true if the subject is trusted by entity.", "properties": { "test": { "type": "string", "title": "Test", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "description": "True or false.", "oneOf": [ diff --git a/source/behavior/entities/filters/filters/weather.json b/source/behavior/entities/filters/filters/weather.json index e0b9434c..47b26a4c 100644 --- a/source/behavior/entities/filters/filters/weather.json +++ b/source/behavior/entities/filters/filters/weather.json @@ -6,8 +6,8 @@ "required": ["value"], "properties": { "test": { "type": "string", "title": "Test", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "description": "The Family name to look for", "type": "string", "title": "Value" } } } diff --git a/source/behavior/entities/filters/filters/weather_at_position.json b/source/behavior/entities/filters/filters/weather_at_position.json index e7d7a4a1..b3be6e46 100644 --- a/source/behavior/entities/filters/filters/weather_at_position.json +++ b/source/behavior/entities/filters/filters/weather_at_position.json @@ -6,8 +6,8 @@ "required": ["value"], "properties": { "test": { "type": "string", "title": "Test", "description": "The test property" }, - "operator": { "$ref": "./types/base_operator.json" }, - "subject": { "$ref": "./types/base_subject.json" }, + "operator": { "$ref": "./types/operator.json" }, + "subject": { "$ref": "./types/subject.json" }, "value": { "description": "The Family name to look for", "type": "string", "title": "Value" } } }