Valetudo/backend/lib/entities/state/attributes/doc/BatteryStateAttribute.opena...

31 lines
638 B
JSON

{
"components": {
"schemas": {
"BatteryStateAttribute": {
"allOf": [
{
"$ref": "#/components/schemas/StateAttribute"
},
{
"type": "object",
"properties": {
"level": {
"type": "number"
},
"flag": {
"type": "string",
"enum": [
"none",
"charging",
"discharging",
"charged"
]
}
}
}
]
}
}
}
}