You need to list the property names of the object, but this is a very alien thing in VBScript. You will need to create some other Jscript functions to help convert the object to something more easily consumed in VBScript.
If the data is really as simplified as the example in the question, you can use this function: -
function toDictionary(o) { var result = Server.CreateObject("Scripting.Dictionary"); for (var key in o) result.Add(key, o[key]); return result; }
Now in VBScript: -
Dim myData: Set myData = toDictionary(jsonData); For Each Key In myData ''
source share