diff --git a/14-draft.json b/14-draft.json index c0f56d9..14cfcaf 100644 --- a/14-draft.json +++ b/14-draft.json @@ -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": { diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f6e822..ce241e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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