MQTC 2017 Introduction To JSON
MQTC 2017 Introduction To JSON
Roger Lacroix
[email protected]
http://www.capitalware.com
MQ Technical Conference v2.0.1.7
What is JSON?
JSON: JavaScript Object Notation.
JSON is a simple, text-based way to store and
transmit structured data. By using a simple syntax,
the user can easily store anything from a single
number through to strings, arrays, and objects
using nothing but a string of plain text. You can also
nest arrays and objects, allowing you to create
complex data structures.
{
"name" : "John",
"cars" : [ "Ford", "BMW", "Fiat" ]
}