Hi
I'd like to use JSON PARSE instead of UNSTRING to parse the JSON structure shown below. My problem is that the content and exact spelling of the middle lines starting with "161 Waist" and "162 Seat" are not known at compile time, only at run time. Is it possible to define a COBOL data structure that can be used with JSON parse to handle this kind of thing?
Thanks
{ "jsonrpc": "2.0", "message": "MeasureResults", "params": { "ID": "0001", "161 Waist": "25.000", "162 Seat": "37.000", "status": "not OK" } }




