AMP 是否对结构化数据值的图片宽度和高度有要求?

Does AMP have image width and height requirements for structured data values?

AMP 验证器针对发布商徽标图像宽度和高度值抛出错误,并针对图像宽度值抛出警告。这两种图像类型的正确尺寸是多少?我在文档中找不到它们。

这里是 description for AMP Logo.
我使用没有问题:

<span itemprop="logo" itemscope itemtype="https://schema.org/ImageObject">
    <meta itemprop="url" content=".../logo.jpg">
    <meta itemprop="width" content="600">
    <meta itemprop="height" content="60">
</span>

并显示:

是的,您可以在此处找到特定的尺寸要求:https://developers.google.com/search/docs/data-types/articles#article_types

您的徽标需要恰好 60px 高或 600px 宽。而对于 ImageObjectwidth 需要至少 696.

Lovntola 没有收到错误,因为他的宽度和高度被读取为字符串。