Skip to content

Commit

Permalink
Changed schema file
Browse files Browse the repository at this point in the history
  • Loading branch information
Luligu committed Aug 20, 2024
1 parent ec9bb51 commit 05bf108
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 7 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ If you like this project and find it useful, please consider giving it a star on

All notable changes to this project will be documented in this file.

## [2.1.12] - 2024-08-21

### Changed

- [schema]: Changed schema file to add MQTT protocol.
- [schema]: Changed descriptions for easier setup.

<a href="https://www.buymeacoffee.com/luligugithub">
<img src="./yellow-button.png" alt="Buy me a coffee" width="120">
</a>

## [2.1.11] - 2024-08-20

### Changed
Expand Down
21 changes: 14 additions & 7 deletions matterbridge-zigbee2mqtt.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,30 @@
"readOnly": true
},
"host": {
"description": "Host (IP address or hostname without mqtt://)",
"type": "string"
"description": "MQTT server host (IP address or hostname without mqtt://)",
"type": "string",
"default": "localhost"
},
"username": {
"description": "Username",
"description": "MQTT server authentication user",
"type": "string"
},
"password": {
"description": "Password",
"description": "MQTT server authentication password",
"type": "string"
},
"port": {
"description": "Port",
"type": "number"
"description": "MQTT server port (default 1883)",
"type": "number",
"default": 1883
},
"version": {
"description": "MQTT server protocol version 3, 4 or 5 (default 5)",
"type": "number",
"default": 5
},
"topic": {
"description": "Topic",
"description": "MQTT base topic for Zigbee2MQTT MQTT messages",
"type": "string"
},
"blackList": {
Expand Down

0 comments on commit 05bf108

Please sign in to comment.