Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions 14-draft.json
Original file line number Diff line number Diff line change
Expand Up @@ -1099,6 +1099,43 @@
"url"
]
}
},
"mqtt": {
"description": "Your open MQTT-Server",
"type": "array",
"items": {
"type": "object",
"properties": {
"url": {
"description": "URL / IP from your open MQTT-Server",
"type": "string"
},
"port": {
"description": "Port from your open MQTT-Server",
"type": "string"
},
"Topics": {
"description": "Topics to know",
"type": "array",
"items": {
"type": "object",
"properties":{
"topic":{
"description": "The topic",
"type": "string"
},
"topicItem":{
"description": "What is this topic for",
"type": "string"
}
}
}
}
},
"required": [
"url",
"port"
]
}
},
"projects": {
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ Changes should start with one of the following tags:
- [added] The `api_compatibility` field was added
- [added] The `network_traffic` sensor was added
- [added] The `links` section was added
- [added] The `mqtt` section was added