1
我的網站上有多個開始日期的班級,即班級將安排在今天,明天和後天。我想爲這個班級展示活動。JSON-LD中具有多個startDate的結構化數據事件
我已經使用了下面的JSON-LD代碼,但它正在列表中選擇最後一個日期。
<script type="application/ld+json">
[{
"@context" : "http://schema.org",
"@type" : "EducationEvent",
"name" : "leed-exam-prep",
"startDate" : "Thursday, September 8, 2016<br />Friday, September 9, 2016",
"url": "https://www.example.com/class/leed-exam-prep/leed-green-associate-exam-prep",
"location" : {
"@type" : "Place",
"name" : "WI - Madison",
"address" : "WI - Madison"
}
}]
我如何可以使用同一個類中的多個開始日期?