blob: 37e7d80fc88734c45f0567a7aa11cd03cab860a1 [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"
},
"topo_path_suffix": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"name",
"topo_path_suffix"
]
}
}
}
}