如何使用 Schema.org 作为我的客户列表?

How to use Schema.org for the list of my customers?

我在使用 Schema.org 和确定要用于我的客户列表的项目类型时遇到问题。

我有这样的东西:

<div class='famouse-brands'>
<h1> my famous customers </h1>
<div>Company name1 </div>
<div>Company name2 </div>
<div>Company name3 </div>
</div>

不确定我是否应该使用 ItemListcustomerInvoice

使用 schema.org

有 2 种显示 Customer 的方法
  1. 架构类型Invoice

    <div itemscope itemtype="http://schema.org/Invoice">
        <h1 itemprop="description">Invoice 1</h1>
        <div itemprop="customer" itemscope itemtype="http://schema.org/Person">
            <b itemprop="name">Jane Doe</b>
        </div>
    </div>
    
  2. 架构类型Order

    <div itemscope itemtype="http://schema.org/Order">
        <h1 itemprop="description">Order 1</h1>
        <div itemprop="customer" itemscope itemtype="http://schema.org/Person">
            <b itemprop="name">Jane Doe</b>
        </div>
    </div>
    

您可以根据您当前的网站结构使用上述任何架构。

此外,您可以在上面为 InvoiceOrder 提供的链接中参考带有 Microdata、RDFa 和 JSON-LD 的详细模式演示.