This object define ranges of values.
| Properties | Type | Description |
|---|---|---|
| _meta | Meta |
Metadata
See
Meta
for more information.
|
| _type |
|
|
| end◊ | Value |
The maximum value of the range.
See
Value
for more information.
Examples
|
| meaning | Text |
The meaning associated to this range in the context it is used.
See
Text
for more information.
|
| start◊ | Value |
The minimum value of the range.
See
Value
for more information.
Examples
|
|
||
|
||
{
"_type": "Values.ValueRange",
"start": {
"_type": "Values.Value",
"value": "'011'"
},
"end": {
"_type": "Values.Value",
"value": "'111'"
},
"meaning": "A range of values from '011' to '111'"
}
{
"info": [
"This object define ranges of values."
],
"properties": {
"_meta": {
"$ref": "../Meta.json",
"info": [
"Metadata"
]
},
"_type": {
"enum": [
"Values.ValueRange"
]
},
"meaning": {
"$ref": "../Text.json",
"info": [
"The meaning associated to this range in the context it is used."
]
},
"start": {
"info": [
"The minimum value of the range."
],
"$ref": "Value.json",
"examples": [
{
"_type": "Values.Value",
"value": "'011'"
}
]
},
"end": {
"info": [
"The maximum value of the range."
],
"$ref": "Value.json",
"examples": [
{
"_type": "Values.Value",
"value": "'111'"
}
]
}
},
"required": [
"start",
"end"
],
"title": "ValueRange",
"type": "object",
"examples": [
{
"_type": "Values.ValueRange",
"start": {
"_type": "Values.Value",
"value": "'011'"
},
"end": {
"_type": "Values.Value",
"value": "'111'"
},
"meaning": "A range of values from '011' to '111'"
}
],
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false
}