LD:必要的名称是什么?

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

问:是否必须仅使用没有name value ,并将“ Modularity设置为一个value并放弃描述?

<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>

您可以使用value属性的Boolean值。

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

如果要描述该功能,请另外使用description属性。

链接地址: http://www.djcxy.com/p/38617.html

上一篇: LD: Is the name of the value necessary?

下一篇: `String.raw` when last character is `\`