Allow floats for media_player picker limits

This commit is contained in:
Joseph Abbey
2025-11-04 19:09:45 +00:00
parent fbeadf7ba9
commit 6822cbe434

View File

@@ -617,11 +617,11 @@
"const": "volume_level"
},
"min": {
"type": "integer",
"type": "number",
"minimum": 0
},
"max": {
"type": "integer",
"type": "number",
"maximum": 1,
"description": "Fraction [0,1], not percentage."
}