Endpoint range
The endpoint range object allows indicating an acceptable range of values for an endpoint.
Properties
### lowestValue (double) The lowestValue property indicates the minimum acceptable value for the endpoint. If this property is omitted or specified with a null value, it is assumed that there is no minimum value.
Examples
This example shows how to build a range object that has a minimum value of 18 and a maximum of 200.
var myRange = { lowestValue: 18, highestValue: 200 };### highestValue (double) The highestValue property indicates the maximum acceptable value for the endpoint. If this property is omitted or specified with a null value, it is assumed that there is no maximum value.
Examples
This example shows how to build a range object that has a minimum value of 18 and a maximum of 200.
var myRange = { lowestValue: 18, highestValue: 200 };