mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2024-11-10 08:57:25 +01:00
30 lines
813 B
JSON
30 lines
813 B
JSON
|
{
|
||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
|
"$id": "http://example.com/job-statistic.schema.json",
|
||
|
"title": "Job statistics",
|
||
|
"description": "Format specification for job metric statistics",
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"unit": {
|
||
|
"description": "Metric unit",
|
||
|
"type": "string"
|
||
|
},
|
||
|
"avg": {
|
||
|
"description": "Job metric average",
|
||
|
"type": "number",
|
||
|
"minimum": 0
|
||
|
},
|
||
|
"min": {
|
||
|
"description": "Job metric minimum",
|
||
|
"type": "number",
|
||
|
"minimum": 0
|
||
|
},
|
||
|
"max": {
|
||
|
"description": "Job metric maximum",
|
||
|
"type": "number",
|
||
|
"minimum": 0
|
||
|
}
|
||
|
},
|
||
|
"required": [ "unit", "avg", "min", "max" ]
|
||
|
}
|