add max-min to schemars (#4005)
Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
@ -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": {
|
||||
|
Reference in New Issue
Block a user