We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b0a5e89 + 0b56664 commit 286e59fCopy full SHA for 286e59f
1 file changed
resources/probe.json.schema
@@ -71,14 +71,14 @@
71
"anyOf": [
72
{
73
"type": "object",
74
- "properties": { "radius": { "type": "float", "minimum": 0 } },
+ "properties": { "radius": { "type": "number", "minimum": 0 } },
75
"required": ["radius"]
76
},
77
78
79
"properties": {
80
- "width": { "type": "float", "minimum": 0 },
81
- "height": { "type": "float", "minimum": 0 }
+ "width": { "type": "number", "minimum": 0 },
+ "height": { "type": "number", "minimum": 0 }
82
83
"required": ["width"]
84
}
@@ -89,7 +89,7 @@
89
"type": "array",
90
"items": {
91
92
- "items": { "type": ["float", "number"] },
+ "items": { "type": ["integer", "number"] },
93
"minItems": 2,
94
"maxItems": 3
95
0 commit comments