The Structured Data Testing Tool doesn't separate my @types into different sections, and places all of the @types into one main type: Product. How can i separate the types so that each are validated as their own container?
https://i.stack.imgur.com/69z3C.jpg (I want to go from the 1st picture to something similar to the 3rd picture, please excuse the errors/warnings)
{
"@context": "http://schema.org",
"@type": "Product",
"name": "Product1",
"image": "http://mycompany.com/logo.png",
"color": "example",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "1",
"ratingCount": "0",
"worstRating": "1",
"bestRating": "5"
},
"brand": {
"@type": "Organization",
"name": "Company1",
"logo": "http://mycompany.com/logo.png"
}
I have more markup than this, but I think this shows enough of what I'm trying to accomplish. Thanks!