blob: aee384591ebac676782ab18ab472022fc11fbb13 [file] [log] [blame]
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Metrics Logger Config Schema",
"type": "object",
"properties": {
"temperature_drivers": {
"$ref": "#/definitions/topological_paths"
},
"power_drivers": {
"$ref": "#/definitions/topological_paths"
}
},
"additionalProperties": false,
"definitions": {
"topological_paths": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"topological_path": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"name",
"topological_path"
]
}
}
}
}