Flow of JSON parsing - adsicks/gambas-json GitHub Wiki

Is this an array?

GAMBAS type Variant[]

If so, process as a list. Check for arrays, Objects, and values. End at end of list.

Is this an Object?

GAMBAS type Collection

If so, must have a name/value pair. Get name/value pair then end.

Is this a value?

GAMBAS types Integer, Float, String, Boolean, Null

Get value then end.