diff --git a/resources/probe.json.schema b/resources/probe.json.schema index 65dc3fa..eecdda1 100644 --- a/resources/probe.json.schema +++ b/resources/probe.json.schema @@ -71,14 +71,14 @@ "anyOf": [ { "type": "object", - "properties": { "radius": { "type": "float", "minimum": 0 } }, + "properties": { "radius": { "type": "number", "minimum": 0 } }, "required": ["radius"] }, { "type": "object", "properties": { - "width": { "type": "float", "minimum": 0 }, - "height": { "type": "float", "minimum": 0 } + "width": { "type": "number", "minimum": 0 }, + "height": { "type": "number", "minimum": 0 } }, "required": ["width"] } @@ -89,7 +89,7 @@ "type": "array", "items": { "type": "array", - "items": { "type": ["float", "number"] }, + "items": { "type": ["integer", "number"] }, "minItems": 2, "maxItems": 3 }