JsonDataType

Description

JSON data type.

namespace JsonDataType
{
	enum Type
	{
		Null,
		Bool,
		Int64,
		Uint64,
		Double,
		String,
		Array,
		Object
	};
}