Add unit json schema. Add exclusive boolean.

This commit is contained in:
Jan Eitzinger 2019-10-15 20:43:09 +02:00
parent deaf49e50d
commit 8e2475ca39
3 changed files with 41 additions and 1 deletions

View File

@ -25,6 +25,10 @@
"type": "integer", "type": "integer",
"exclusiveMinimum": 0 "exclusiveMinimum": 0
}, },
"exclusive": {
"description": "Job uses only exclusive nodes",
"type": "boolean"
},
"walltime": { "walltime": {
"description": "Requested walltime of job in seconds", "description": "Requested walltime of job in seconds",
"type": "integer", "type": "integer",

View File

@ -6,7 +6,7 @@
"properties": { "properties": {
"unit": { "unit": {
"description": "Metric unit", "description": "Metric unit",
"type": "string" "#ref": "https://github.com/RRZE-HPC/HPCJobDatabase/blob/master/json-schema/unit.schema.json"
}, },
"avg": { "avg": {
"description": "Job metric average", "description": "Job metric average",

View File

@ -0,0 +1,36 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Metric unit",
"description": "Format specification for job metric units",
"type": "object",
"properties": {
"base_unit": {
"description": "Metric base unit",
"type": "string",
"enum": [
"B",
"F",
"B/s",
"F/s",
"CPI",
"IPC",
"Hz",
]
},
"prefix": {
"description": "Unit prefix",
"type": "string",
"enum": [
"K",
"M",
"G",
"T",
"P",
"E"
]
}
},
"required": [
"base_unit"
]
}