JSON missing data in import
-
I have a JSON coming in this format. The importer reads up until “Products” and then it doesn’t import further (including Products). How could we fix this? I’m assuming it is because there is an array within an array?
JSON:
[
{
“ID”: 1691,
“Number”: “14189”,
“NumberDate”: “2014-05-22T00:00:00”,
“Description”: “TThis is a sample description”,
“URL”: “https://url_to_details”,
“Title”: “Lakeshore Title”,
“Contact”: “Contact us at 888-555-2222.”,
“LastPublishDate”: “2015-01-09T00:00:00”,
“Products”: [
{
“Name”: “Toy 1”,
“Description”: “Toy descriptoin”,
“Model”: “44rr2”,
“Type”: “Sets”,
“CategoryID”: “2201”,
“NumberOfUnits”: “About 2,000”
}
],
“Images”: [
{
“URL”: “https://url_toimage.jpg”
}
],
“Manufacturers”: [
{
“Name”: “ToyMAN”,
“CompanyID”: “”
}
],
“ManufacturerCountries”: [
{
“Country”: “China”
}
],
“ProductUPCs”: []
}
]
- The topic ‘JSON missing data in import’ is closed to new replies.