| ... | ... | @@ -2,23 +2,33 @@ |
|
|
|
title: 'MQTT Topic: data_parsed'
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
|
|
`data_parsed`
|
|
|
|
=============
|
|
|
|
|
|
|
|
|
|
|
|
#### version 1
|
|
|
|
Either format is valid.
|
|
|
|
|
|
|
|
```py
|
|
|
|
{
|
|
|
|
"thing_uuid": <UUID> # UUID of a thing
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
```py
|
|
|
|
{
|
|
|
|
"version": 1,
|
|
|
|
"thing_uuid": <UUID> # UUID of a thing
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
#### version 2
|
|
|
|
The following message is send to run a QaQc setup for a defined chunk of data.
|
|
|
|
|
|
|
|
```py
|
|
|
|
{
|
|
|
|
"version": 2,
|
|
|
|
"project_uuid": <UUID>, # UUID of a project
|
|
|
|
"qc_settings_name": <STRING>, # the name of a QC Settings
|
|
|
|
"start-date": <DT-STRING> # start date of the data to process
|
| ... | ... | |
| ... | ... | |