22 lines
348 B
JSON
22 lines
348 B
JSON
|
{
|
||
|
"type": "array",
|
||
|
"items": {
|
||
|
"minItems": 2,
|
||
|
"maxItems": 3,
|
||
|
"type": "object",
|
||
|
"required": ["value", "title"],
|
||
|
"properties": {
|
||
|
"value": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"title": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"unit": {
|
||
|
"type": "string"
|
||
|
}
|
||
|
},
|
||
|
"additionalProperties": false
|
||
|
}
|
||
|
}
|