[r2]: / trunk / Data Types / JSONVALUETYPE / svnobj  Maximize  Restore  History

Download this file

12 lines (11 with data), 1.5 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
TYPE JSONVALUETYPE :
(
	json_string,	//local var is type STRING
	json_number,	//local var is REAL
	json_integer,	//local var is DINT
	json_boolean,	//local var is BOOL
	json_null,		//local var is type null
	json_array,		//object is an array
	json_object		//object is another object (nested objects)
);
END_TYPE