Defines a range of values.
Properties | Type | Description |
---|---|---|
_meta | Meta |
See
Meta
for more information.
|
_type |
|
|
end◊ |
|
The maximum value of the range. |
start◊ |
|
The minimum value of the range. |
|
||
|
{
"_type": "Index",
"start": 3,
"end": 5
}
{
"additionalProperties": false,
"examples": [
{
"_type": "Index",
"start": 3,
"end": 5
}
],
"info": [
"Defines a range of values."
],
"properties": {
"_meta": {
"$ref": "Meta.json"
},
"_type": {
"enum": [
"Index"
]
},
"start": {
"info": [
"The minimum value of the range."
],
"type": "integer"
},
"end": {
"info": [
"The maximum value of the range."
],
"type": "integer"
}
},
"required": [
"start",
"end"
],
"title": "Index",
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#"
}