I'm trying to publish an article with multiple authors but all I get is the following without any author data.
"author": {
"@type": "Author"
},
Is there a way to create an array like the following answer so it looks like the json below:
https://webmasters.stackexchange.com/a/90191
"author": [{
"@type": "Person",
"familyName": "van der Westhuizon",
"givenName": "Jason",
"name": "Jason van der Westhuizon"
},
{
"@type": "Person",
"familyName": "du Toit",
"givenName": "Jene",
"name": "Jene du Toit"
}]
Thank you!