Hey Geoffrey 
The problem is that you’re not waiting for the promises to resolve, here’s how:
$w.onReady(async () => {
await Promise.all([
initPage(),
initReviews()
]).then(() => {
console.log(structuredData);
})
})
For that to work you need to change the type of the main functions to async functions that return a Promise instead of Void, also, you still need to change the structured data on the SEO, which something you’re not doing in your code.
Here’s an example of a product data in JSON-LD format:
wixSeo.setStructuredData([
{
"@context": "https://schema.org/",
"@type": "Product",
"name": "Nasriya Software",
"image": [
"https://example.com/photos/1x1/photo.jpg",
"https://example.com/photos/4x3/photo.jpg",
"https://example.com/photos/16x9/photo.jpg"
],
"description": "The is an example description",
"sku": "0446310786",
"mpn": "null",
"brand": {
"@type": "Brand",
"name": "Nasriya"
},
"review": {
"@type": "Review",
"reviewRating": {
"@type": "Rating",
"ratingValue": "3.5",
"bestRating": "5"
},
"author": {
"@type": "Person",
"name": "Ahmad"
}
},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.4",
"reviewCount": "89"
},
"offers": {
"@type": "Offer",
"url": "https://nasriya.net/services",
"priceCurrency": "USD",
"price": "119.99",
"priceValidUntil": "2020-11-20",
"itemCondition": "https://schema.org/UsedCondition",
"availability": "https://schema.org/InStock"
}
}
])
Hope this helps~!
Ahmad