Hello i try to complete the Json-LD generated by wix on products.
This is my product page: https://www.supran.net/product-page/sistema-di-pressurizzazione-automatico-con-inverter-dg-ped
And this is the code
let structuredData = wixSeo.structuredData;
console.log(structuredData); //original data
structuredData=[
{
"@context": "http://schema.org",
"@type": "Organization",
"name": "My Organization Name",
"url": "https://www.myorgdomain.com"
},
{
"@context": "http://schema.org",
"@type": "Person",
"email": "mailto:john.doe@somedomain.com",
"jobTitle": "Professor",
"name": "John Doe",
"telephone": "(555) 555-555"
}
];
console.log(structuredData); //edited data
wixSeo.setStructuredData(structuredData);
But if you see the google test page i can’t see my code: Schema Markup Testing Tool | Google Search Central | Google for Developers
Someone can help me?
I need to edit the Original JSON-LD code to fix some google warning like priceValidUntil, aggregateRating and review (i create a dataset for reviews)
Thank you.