在尝试schema.org/Article
针对 Google 的结构化数据测试工具验证 a 时,我注意到如果您指定 SVG 图像,它会给出错误:
为logo提供的值必须是有效的 URL。
要求:
AMP 文章(这是什么?)
当 URL 更改为具有.png
(或.jpg
、.bmp
、.webp
等)扩展名而不是.svg
时,它将通过验证。
这是我正在使用的示例:
<div itemscope itemtype="http://schema.org/Article">
<div itemprop="publisher" itemscope itemtype="https://schema.org/Organization">
<meta itemprop="name" content="Example" />
<meta itemprop="url" content="http://example.com" />
<div itemprop="logo" itemscope itemtype="https://schema.org/ImageObject">
<meta itemprop="url" content="http://example.com/logo.svg" />
<meta itemprop="width" content="600" />
<meta itemprop="height" content="60" />
</div>
</div>
<meta itemprop="dateModified" content="2016-01-05T12:43" />
<meta itemprop="datePublished" content="2016-01-05T12:43" />
<meta itemprop="headline" content="Example" />
<meta itemprop="name" content="Example" />
<meta itemprop="author" content="Example" />
<link itemprop="mainEntityOfPage" href="http://example.com/article" />
<div itemprop="image" itemscope itemtype="https://schema.org/ImageObject">
<meta itemprop="url" content="http://example.com/article.jpg" />
<meta itemprop="width" content="1200" />
<meta itemprop="height" content="800" />
</div>
</div>
更改其他图像的 URL 扩展名也会产生错误。
我无法在Rich Snippets 文档或AMP HTML 规范中找到有关它拒绝 SVG 的任何信息。有人对这种行为有解释吗?