Details
-
Type: Bug
-
Status: Closed
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 4.12.0-b1
-
Component/s: None
-
Labels:None
Description
The legacy API returned a list of scalar values and we displayed each of those fields. With the new API data is returned in a formatted manner using objects, but we still only display the scalar values. We need to record and display these non-scalar values.
We're think one of two options.
The first is to use composite names for each row, for example:
{"ip_address": {"city": {"confidence": "75"}}}
Would equate to:
ip_address-city-confidence | 75 |
---|
The second is to use a json_encode pretty print on any non-scalar values.
Either of these formatting options would need to be handled by the MaxmindV2::fraudDetails() method.