{
  "pluginAlias": "HomebridgeRedmondRobot",
  "pluginType": "platform",
  "singular": true,
  "headerDisplay": "",
  "schema": {
    "type": "object",
    "properties": {
      "username": {
        "title": "Username",
        "type": "string",
        "required": true,
        "default": "Username",
        "description": "E-Mail or Phone (Phone without Country-Code) e.g 123456 not +49123456"
      },
      "password": {
        "title": "Password",
        "type": "string",
        "required": true,
        "default": "Password",
        "description": "Account Password."
      },
      "country": {
        "title": "Country",
        "type": "string",
        "required": true,
        "default": "+49",
        "description": "Country-Code e.g +49 for Germany"
      },
      "startMode": {
        "title": "Start Mode",
        "type": "string",
        "default": "AutoClean",
        "oneOf": [
          { "title": "AutoClean", "enum": ["AutoClean"] },
          { "title": "EdgeClean", "enum": ["EdgeClean"] },
          { "title": "SpotClean", "enum": ["SpotClean"] },
          { "title": "RoomClean", "enum": ["RoomClean"] },
          { "title": "SmartClean", "enum": ["SmartClean"] }
        ],
        "description": "Select the Start Mode",
        "required": true
      },
      "stopMode": {
        "title": "Stop Mode",
        "type": "string",
        "default": "BackCharging",
        "oneOf": [
          { "title": "BackCharging", "enum": ["BackCharging"] },
          { "title": "Standby", "enum": ["Standby"] }
        ],
        "description": "Select the Stop Mode",
        "required": true
      }
    }
  }
}
