JSON Parser Xojo plugin

JSONPrimitive.NodeTypeEnum Enum

Enum representing types of primitive nodes.

enum JSONPrimitive.NodeTypeEnum

Constants

JSON_OBJECT = 0Object (Object n JSON is basically dictionary)
JSON_ARRAY = 1Array
JSON_STRING = 2String
JSON_INTEGER = 3Integer (All integers are 64 bit)
JSON_REAL = 4Double
JSON_TRUE = 5True. The library we use does not really have concept of Boolean but it has True and False as separate primitives.
JSON_FALSE = 6False. The library we use does not really have concept of Boolean but it has True and False as separate primitives.
JSON_NULL = 7Null (same as nil in Xojo)