18 lines
338 B
JSON
18 lines
338 B
JSON
{
|
|
"type": "object",
|
|
"required": ["points"],
|
|
"properties": {
|
|
"points": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"required": ["ts", "value"],
|
|
"properties": {
|
|
"ts": { "type": "integer" },
|
|
"value": {}
|
|
},
|
|
"additionalProperties": false
|
|
}
|
|
}
|
|
}
|
|
} |