type
NumberField
type NumberField struct {
Min *float64 `json:"min,omitempty"`
Max *float64 `json:"max,omitempty"`
Step *float64 `json:"step,omitempty"`
}Inclusive numeric bounds and presentation step.
Min*float64- The Min value.
Max*float64- The Max value.
Step*float64- The Step value.
Step is admin metadata, not a divisibility constraint.