I have such data for a field called calculator-xlogp
:
such measures:
such mapping:
The field is not appearing somehow in flexmonster at all. Wonder what could I look into to fix it.
Hello,
Thank you for contacting us.
Please note that Flexmonster supports the following JSON data source formats:
1. An array of objects, where each object is an unordered set of key-value pairs:
[
{
"Color" : "green",
"Country" : "Canada",
"State" : "Ontario",
"City" : "Toronto",
"Price" : 174,
"Quantity" : 22
},
{
"Color" : "red",
"Country" : "USA",
"State" : "California",
"City" : "Los Angeles",
"Price" : 166,
"Quantity" : 19
}
]
2. An array of arrays, where the first array contains field names, while other arrays are an ordered collection of values:
[
["Color", "Country", "State", "City", "Price", "Quantity"],
["green", "Canada", "Ontario", "Toronto", 174, 22],
["red", "USA", "California", "Los Angeles", 166, 19]
]
Other JSON formats aren’t officially supported and may have unexpected results. Please check if the data has the correct format.
We hope it helps. You are welcome to write to us in case further questions arise.
Kind regards,
Nadia
Hmm, I think the first format is what I have for the data, nothing out of the ordinary.