Hi.
I'm trying to set up a data integration using a JSON provider on a DW 9.12.12 solution. I'm running into an issue where no source table is found in my data:
I think the issue comes down to the formatting of my JSON file without being 100% certain. The JSON Provider documentation contains no information on the desired format from what I can see. I found the following forum post containing a snippet of some JSON and tried to replicate the format but to no avail: https://doc.dynamicweb.com/forum/integration/json-import-of-products-and-variants-fails?PID=1605
Below is an example of my JSON format (mocked values). Any ideas as to what might cause the issue?
{
"tableName": "ProductInformations",
"ProductInformations": [
{
"StructureId": "123",
"colorId": "abc123",
"ItemNumber": "1234",
"Name": "product1",
"Language": "GB",
"webImages": [
{
"Title": "product1",
"Image": "img1.png",
"ImagePath": "/Files/..."
},
{
"Title": "product1",
"Image": "img2.png",
"ImagePath": "/Files/..."
},
],
"thumbnail": [
{
"Title": "product1",
"Image": "img3.png",
"ImagePath": "/Files/..."
}
],
"availableFinishingTypes": [
{
"Title": "finishType1",
"Image": "img4.png",
"ImagePath": "/Files/..."
}
],
"availableShapes": [
{
"Title": "Shape1",
"Image": "img5.png",
"ImagePath": "/Files/..."
},
{
"Title": "Shape2",
"Image": "img6.png",
"ImagePath": "/Files/..."
},
]
},
]
}