JSON (JavaScript Object Notation) is a simple, lightweight, data encoded string. Used for data interchange since 2002 to communicate between a web browser and a server for the Javascript language, it has gained popularity and is used in many scenarios beyond those implemented in 2002. Many IoT devices can easily receive a JSON payload.

On the left is the universe of data available to a
The format of the JSON output string is relatively simple, organised into a list of key:value pairs, with support for data types: Numeric, Boolean, Enum and String much like
JSON supports two data structures: objects and arrays. Complexity emerges from these simple constructs mainly due to the variation
in expected payload between different pieces of software, and also their expected encoding of non-primitive types, such as
date and time. This is where the demand arises for a flexible solution to marshal
You can extend the Toolkit or use APIs to access a station’s data. JSON can post data to APIs for data transmission. For example,
using the inbound components of the JSON Toolkit, external systems can send a JSON-encoded message to a
As the data manipulator, you set up data retrieval and use by creating links between JSON objects. Each schema contains a single root object, which itself contains the JSON objects that establish the links.

From the station to the destination, you link the output string, typically via MQTT, to a string-publish point, which sends the payload to a topic in the broker that forwards (transports) it to the destination system. The schema itself is transport agnostic. Linking produces the desired result.
For example, just as an external oBIX client can poll a station for data, the JSON output can be retrieved via an HTTP GET request to a URL that exposes its contents as a web servlet. Using JSON, you can have the same rich data that oBIX provides without the pre-defined oBIX format. Using JSON, you choose the format of the data, which affords total flexibility.
MQTT brokers can link the output of a JSON schema to a cloud platform, such as Bluemix, Google Cloud, and AWS.