mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2024-11-10 08:57:25 +01:00
42 lines
935 B
JSON
42 lines
935 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft/2020-12/schema",
|
|
"$id": "embedfs://unit.schema.json",
|
|
"title": "Metric unit",
|
|
"description": "Format specification for job metric units",
|
|
"type": "object",
|
|
"properties": {
|
|
"base": {
|
|
"description": "Metric base unit",
|
|
"type": "string",
|
|
"enum": [
|
|
"B",
|
|
"F",
|
|
"B/s",
|
|
"F/s",
|
|
"CPI",
|
|
"IPC",
|
|
"load",
|
|
"Hz",
|
|
"W",
|
|
"°C",
|
|
""
|
|
]
|
|
},
|
|
"prefix": {
|
|
"description": "Unit prefix",
|
|
"type": "string",
|
|
"enum": [
|
|
"K",
|
|
"M",
|
|
"G",
|
|
"T",
|
|
"P",
|
|
"E"
|
|
]
|
|
}
|
|
},
|
|
"required": [
|
|
"base"
|
|
]
|
|
}
|