gpt4 book ai didi

JSON-LD:值的名称是必需的吗?

转载 作者:行者123 更新时间:2023-12-03 01:13:56 25 4
gpt4 key购买 nike

我目前正在致力于在 /about-page 中添加网络应用程序的结构化数据。我想在那里添加一个属性。在下面的代码中,我同时使用了名称(正如我在schema.org中看到的那样)。

问:我是否必须仅使用value而不使用name,并将例如Modularity设置为并删除描述?

<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "product",
"name":"Product_name",
"additionalProperty":
{
"@type":"propertyValue",
"name":"Main features",
"value":
[
{
"@type":"propertyValue",
"name": "Detailed documentation",
"value": "description_of_the_documentation"
},
{
"@type":"propertyValue",
"name": "Fully responsive",
"value": "description_of_the_responsiveness"
}
],

"@type":"propertyValue",
"name":"Other features",
"value":
[
{
"@type":"propertyValue",
"name": "Modularity",
"value": "description_of_the_modularity"
},
{
"@type":"propertyValue",
"name": "Frequent updates",
"value": "description_of_the_updates"
}
]
}
}
</script>

最佳答案

您可以使用 Boolean 值来表示 value属性。

{
"@type": "PropertyValue",
"name": "Modularity",
"value": true
}

如果您想描述该功能,请使用 description另外还有属性(property)。

关于JSON-LD:值的名称是必需的吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42559057/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com