add max-min to schemars (#4005)

Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2024-09-26 16:33:49 -07:00
committed by GitHub
parent 20777a60aa
commit 9d0f06b58f
4 changed files with 18 additions and 7 deletions

View File

@ -51912,12 +51912,16 @@
"angleEnd": {
"description": "The end angle.",
"type": "number",
"format": "double"
"format": "double",
"maximum": 360.0,
"minimum": -360.0
},
"angleStart": {
"description": "The start angle.",
"type": "number",
"format": "double"
"format": "double",
"maximum": 360.0,
"minimum": -360.0
},
"radius": {
"description": "The radius.",
@ -221804,6 +221808,8 @@
"default": null,
"type": "number",
"format": "double",
"maximum": 360.0,
"minimum": -360.0,
"nullable": true
},
"axis": {