Planon IoT : Planon IoT : IoT Platform : Templates : IoT Platform CloudGateway™ : How the IoT Platform CloudGatewaytm works
How the IoT Platform CloudGatewaytm works
1. Go to the product page in which you want to define the SSG feature, and choose the Advanced tab. If you are unable to see this tab, contact IoT Platform support so they can enable this feature for you.
Screen capture displaying product info window
2. On the Advanced tab you can upload a JSON file. The JSON file should include a payload sample from your device in a valid JSON format.
Screen capture displaying Elavator product info with Advanced tab
For example:
{
"serialNum":"12345",
"temp": 14,
"humid": 23,
"t":"12314234234
}
Properties of the JSON structure are taken to build the following form:
* 
Please note that the property values are not important when building the schema parser, but rather, only the properties themselves.
Screen capture displaying updated JSON file in Advanced tab
3. Selecting the Communications Protocol.
First you need to select the Protocol that you would like to use to send events to IoT Platform , currently there are two options in the SSG; HTTP and IoTHub.
Selecting ‘HTTP’ will create a new HTTP listener with a DNS, Port and authorization header in the IoT Platform platform, that will be provided after you click Save.
Choosing ‘IoT Hub’ will give you the IoT Hub connection string that you can use to send your data.
4. Building the Schema Parser
The Schema Parser handles the translation between the incoming JSON payload to the IoT Platform Event structure. The IoT Platform event structure consists of the device identifier, the unique identifier of the device that is sending the payload, the time stamp of the message, (not mandatory, but if not defined the time stamp of the event will be the time that it reached the IoT Hub) and the event definition, consisting of 4 parameters; name, value, type code and unit.
The name is the event name that will be displayed in the IoT Platform UI, the value is the event value, the type code is the logical classification of the event and unit is the unit value. Note that unit is not mandatory, and if not provided it will be taken from the default unit that is defined in the type code list.
Once the JSON file is uploaded, it’s properties can be selected in the “your field” column and can then be matched to the system fields described above. Multiple events may be added for the same payload by clicking the ‘+ Add Event’ button.
5. Adding Predefined functions.
Selecting a predefined function will activate logic on the incoming data. Currently there are five predefined functions:
Multiply – To multiply the incoming data.
HexToDec/DecToHex – Convert from hexadecimal to decimal and vice versa.
Substring – Take only a subset of the incoming value.
EpochToDateTime, (relevant only for time stamp property) – Convert date time from its epoch presentation to its ISO8601 presentation.
6. Testing your work.
After the schema is defined, it can be tested and you can see whether its parsed correctly by clicking the ‘Test’ button in the top right corner. If it works correctly, you will get the IoT Platform JSON payload in the response.
See the ‘Parsed test event’ as an example:
Screen capture of parsed test event
If there is something wrong with the schema you will get an error message, or one of the properties in the above JSON will be empty or missing.
7. Saving your work.
Once you click ‘save’ it will take a few seconds to create the new HTTP gateway or the new IoT hub connection string. When ready, you will get in the SSG for the IoT Hub Connection String or the HTTP gateway details, (DNS,Port, Authorization key).
* 
There are many SSG features that are not exposed in the UI but can be used using the API, for example, adding your own custom function on the incoming data, support in JSON arrays, decode functions on your JSON, (useful for Lorawan) and more.