homebridge-kobold-Homaassis.../config.schema.json

43 lines
1.0 KiB
JSON
Raw Permalink Normal View History

{
2020-12-13 18:31:44 +01:00
"pluginAlias": "KoboldVacuumRobot",
"pluginType": "platform",
2020-12-13 22:20:01 +01:00
"headerDisplay": "For Advanced settings like the refresh time interval or disabled switches/sensors. [Check Here](https://github.com/himbeles/homebridge-kobold#readme)",
"schema": {
"type": "object",
"properties": {
2020-12-13 18:31:44 +01:00
"token": {
"title": "token",
"type": "string",
"required": true,
2021-05-04 08:02:18 +02:00
"description": "Your Kobold Token (https://git.io/J3g1b)"
2021-02-07 11:15:08 +01:00
},
"language": {
"title": "language",
"type": "string",
"default": "en",
"oneOf": [
{
"title": "English",
"enum": [
"en"
]
},
{
"title": "German",
"enum": [
"de"
]
2021-03-10 16:49:40 +01:00
},
{
"title": "French",
"enum": [
"fr"
]
2021-02-07 11:15:08 +01:00
}
],
"required": true
}
}
}
2021-03-10 16:49:40 +01:00
}