Hello,
I am trying to use a model transformer to transform my input - bcl:System.Collections.Generic.List<System.Collections.Generic.List<System.String>> - into a more desired form - a table. In testing, I can compile my transformation code versions, but I get the below error in my flow. I have tried making a base case by manually setting an output value to a random string (not using my input data), but this results in the same error. Despite this test, I suspect it is due to the custom specification of my input data and backend JSON deserializing. To combat this, I got this custom output in flow, copied it as JSON then imported it as a model so I did not need any custom specifications. However, this generated model would not work with the data resulting in more errors. More specifically I believe the issue may be that my JSON input only contains values and is not the general format of{“name”:“value”}. However, I cannot seem to transform my data into this format, and I cannot change the input. Below is an example of the JSON of my input data. I have replaced the values with other values. Any help/insight would be greatly appreciated.
Best,
Andrew
{
“text”: [
{
“value”: {
“value”: [
{
“value”: “column_name_1”
},
{
“value”: “column_name_2”
},
{
“value”: “column_name_3”
},
{
“value”: “column_name_4”
},
{
“value”: “column_name_5”
},
{
“value”: “column_name_6”
},
{
“value”: “column_name_7”
},
{
“value”: “column_name_8”
},
{
“value”: “column_name_9”
},
{
“value”: “column_name_10”
},
{
“value”: “column_name_11”
},
{
“value”: “column_name_12”
},
{
“value”: “column_name_13”
},
{
“value”: “column_name_14”
},
{
“value”: “column_name_15”
},
{
“value”: “column_name_16”
},
{
“value”: “column_name_17”
},
{
“value”: “column_name_18”
}
]
}
},
{
“value”: {
“value”: [
{
“value”: “hello world”
},
{
“value”: "hello world "
},
{
“value”: "hello world "
},
{
“value”: “12345”
},
{
“value”: “hello world”
},
{
“value”: “12345”
},
{
“value”: “hello world”
},
{
“value”: "12345 "
},
{
“value”: “12345”
},
{
“value”: “12345”
},
{
“value”: “12345”
},
{
“value”: “12345”
},
{
“value”: “12345”
},
{
“value”: “12345”
},
{
“value”: “12345”
},
{
“value”: “12345”
},
{
“value”: “12345”
},
{
“value”: “”
}
]
}
},
{
“value”: {
“value”: [
{
“value”: “hello world”
},
{
“value”: "hello world "
},
{
“value”: "hello world "
},
{
“value”: “12345”
},
{
“value”: “hello world”
},
{
“value”: “12345”
},
{
“value”: “hello world”
},
{
“value”: "12345 "
},
{
“value”: “12345”
},
{
“value”: “12345”
},
{
“value”: “12345”
},
{
“value”: “12345”
},
{
“value”: “12345”
},
{
“value”: “12345”
},
{
“value”: “12345”
},
{
“value”: “12345”
},
{
“value”: “12345”
},
{
“value”: “”
}
]
}
}
]
}