The json object contains property names that are numbers which are not valid names in FoxPro. That's a pretty silly thing to do for any sort of object schema :-( IOW, there's no way to turn that into Fox properties as is.
However, you can modifgy this code to wwJsonSerializer:
************************************************************************ * ParseObject **************************************** *** Function: *** Assume: *** Pass: *** Return: ************************************************************************PROTECTEDFUNCTION ParseObjectJson(loObject)LOCAL loResult, loMembers, loMember, lnCount, lnX, lvValue loResult = CREATEOBJECT("EMPTY") loMembers = this.oBridge.InvokeMethod(loObject,"GetMembers") lnCount =loMembers.CountFOR lnX = 0 TO lnCount-1 loMember = loMembers.Item(lnX) lvValue = nullDOCASECASE loMember.Type = "O" lvValue = THIS.ParseObjectJson(loMember)CASE loMember.Type = "A" lvValue = THIS.ParseArrayJson(loMember)OTHERWISE lvValue = this.ParseValueJson(loMember)ENDCASE lcName = loMember.NameIFISDIGIT(LEFT(lcName,1)) lcName = "_" + lcNameENDIFADDPROPERTY(loResult,lcName,lvValue)ENDFORRETURN loResultENDFUNC
which explicitly checks for numeric values as the first character and if so prefixes it with an _ (FoxPro var names cant start with a number).
This makes it work, but you'll have to adjust your names for the numeric fields from the json to include the underscore.
+++ Rick ---