JSON Concepts: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 12: Line 12:


==Booleans==
==Booleans==
Booleans are represented as
<pre>
true
false
</pre>
and they are not quoted.


==Strings==
==Strings==

Revision as of 16:13, 25 February 2017

Internal

Data Types

JSON data types are: null, Booleans, Strings, Numbers, Objects (which can be thought of as Maps) and Arrays.

null

Booleans

Booleans are represented as

true
false

and they are not quoted.

Strings

Numbers

Objects

Arrays