我在我的网站上实施了 Google 的附加链接搜索框。它工作得很好。但是今天我再次检查了谷歌结构化数据测试工具,并且出现了问题。现在我遇到以下错误:
我的实现是:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebSite",
"url": "https://www.saatler.com/",
"potentialAction": {
"@type": "SearchAction",
"target": "https://www.saatler.com/arama?ara={search_term_string}",
"query-input":"required name=search_term_string"
}
}
</script>
当我在JSON-LD 操场上检查 JSON 时,一切看起来都很好。我没有更改我网站上的任何内容。谷歌在这个问题上错了吗?还是 Schema.org 结构发生了变化?我应该怎么做才能解决这两个问题?