Google SDTT错误:"不允许重复网址值。"

时间:2017-09-05 09:08:09

标签: schema.org json-ld google-rich-snippets

Google Structured Data Testing Tool返回以下JSON-LD:

  

不允许重复网址值。

为什么呢?我不明白。

<script type="application/ld+json">
    {
        "@context": "http://schema.org",
        "@type": "ItemList",
        "itemListElement": [{
                "@type": "ListItem",
                "position": 0,
                "item": {
                    "@type": "Article",
                    "headline": "Bonito de norte",
                    "alternativeHeadline": "Thunnus alalunga.",
                    "image": {
                        "@type": "ImageObject",
                        "url": "http://dechado09.softgalia.com/producto/imagenes/facebook/2/BONITO.jpg?1502195043",
                        "width": "1200",
                        "height": "830"
                    },
                    "author": "SoftGalia Aplicaciones Informáticas S.L.",
                    "editor": "Pescados Trocheros",
                    "keywords": "Venta pescado, Mayorista de Pescado",
                    "publisher": {
                        "@type": "Organization",
                        "name": "Academia Lucense de Balonmano",
                        "logo": {
                            "@type": "ImageObject",
                            "url": "http://dechado09.softgalia.com/logo/facebook/1/logo-trochero-01.jpg?1504175529",
                            "width": "1200",
                            "height": "830"
                        }
                    },
                    "url": "http://dechado09.softgalia.com/productos/index",
                    "datePublished": "2017-08-08 12:24:11 UTC",
                    "dateCreated": "2017-08-08 12:24:11 UTC",
                    "dateModified": "2017-08-22 07:43:53 UTC",
                    "description": "Thunnus alalunga.",
                    "articleBody": "Thunnus alalunga.",
                    "mainEntityOfPage": "http://dechado09.softgalia.com/productos/index"
                }
            },
            {
                "@type": "ListItem",
                "position": 1,
                "item": {
                    "@type": "Article",
                    "headline": "Merluza",
                    "alternativeHeadline": "Merluccius merluccius",
                    "image": {
                        "@type": "ImageObject",
                        "url": "http://dechado09.softgalia.com/producto/imagenes/facebook/4/merluza-primer-plano.jpeg?1504525751",
                        "width": "1200",
                        "height": "830"
                    },
                    "author": "SoftGalia Aplicaciones Informáticas S.L.",
                    "editor": "Pescados Trocheros",
                    "keywords": "Venta pescado, Mayorista de Pescado",
                    "publisher": {
                        "@type": "Organization",
                        "name": "Academia Lucense de Balonmano",
                        "logo": {
                            "@type": "ImageObject",
                            "url": "http://dechado09.softgalia.com/logo/facebook/1/logo-trochero-01.jpg?1504175529",
                            "width": "1200",
                            "height": "830"
                        }
                    },
                    "url": "http://dechado09.softgalia.com/productos/index",
                    "datePublished": "2017-09-04 11:49:13 UTC",
                    "dateCreated": "2017-09-04 11:49:13 UTC",
                    "dateModified": "2017-09-05 08:38:27 UTC",
                    "description": "Merluccius merluccius",
                    "articleBody": "Merluccius merluccius",
                    "mainEntityOfPage": "http://dechado09.softgalia.com/productos/index"
                }
            }
        ]
    }
</script>

1 个答案:

答案 0 :(得分:0)

有两种方法可以为结构化数据实现列表格式:

  • 摘要页面+多个完整详细信息页面
  • 列出项目单个,一页一页的列表

我的案例是文章的一页,谷歌指南说:“摘要页面列出了每个项目的简短描述,每个描述都指向一个单独的详细信息页面,完全集中在一个项目上。”

好的标记必须是。

    {“@ context”:“http://schema.org”,     “@type”:“ItemList”,     “itemListElement”:     [         {             “@type”: “列表项”,             “位置”:0,             “url”:“http://dechado09.softgalia.com/productos/bonito-de-norte”         },         {             “@type”: “列表项”,             “位置”:1,             “url”:“http://dechado09.softgalia.com/productos/merluza”         }     ]     }