A floating point interval.
| JSON representation |
|---|
{ // The following is a list of mutually exclusive fields. At most one of the // fields will be set in a response: "minimum": number, "exclusiveMinimum": number // End of mutually exclusive fields. // The following is a list of mutually exclusive fields. At most one of the // fields will be set in a response: "maximum": number, "exclusiveMaximum": number // End of mutually exclusive fields. } |
| Fields | |
|---|---|
The lower bound of the interval. If neither of the min fields are set, then the lower bound is negative infinity. This field must be not larger than max. Otherwise, an |
|
minimum |
Inclusive lower bound. |
exclusiveMinimum |
Exclusive lower bound. |
| End of mutually exclusive fields. | |
The upper bound of the interval. If neither of the max fields are set, then the upper bound is positive infinity. This field must be not smaller than min. Otherwise, an |
|
maximum |
Inclusive upper bound. |
exclusiveMaximum |
Exclusive upper bound. |
| End of mutually exclusive fields. | |