Schema.org 信用卡
Schema.org for credit card
我有一个 website that gives information about credit cards. I want to know if there is any schema for credit cards information? e.g. for each credit card I have a page 有很多信息,我认为有一种方法可以实现一些架构标签。
我在 schema.org
上搜索了一下,但在那里找不到任何东西。请有人在这方面指导我。
虽然 Schema.org 确实有 CreditCard
type, this is probably not what you need, as it’s an Enumeration
(i.e., a list of URIs) of payment methods (PaymentMethod
). You’d typically not use this type directly (see an example how to use it).
为了表示卡片,您可以使用 Product
type. For representing the issuer, you could use the Corporation
type (and Brand
might also be of use). For representing services offered by the card/organization, you could use the Service
类型。
如果您查看这些内容,就会发现 Review
type; for rating it, there’s Rating
; and for an "average rating based on multiple ratings or reviews", there’s AggregateRating
。
我有一个 website that gives information about credit cards. I want to know if there is any schema for credit cards information? e.g. for each credit card I have a page 有很多信息,我认为有一种方法可以实现一些架构标签。
我在 schema.org
上搜索了一下,但在那里找不到任何东西。请有人在这方面指导我。
虽然 Schema.org 确实有 CreditCard
type, this is probably not what you need, as it’s an Enumeration
(i.e., a list of URIs) of payment methods (PaymentMethod
). You’d typically not use this type directly (see an example how to use it).
为了表示卡片,您可以使用 Product
type. For representing the issuer, you could use the Corporation
type (and Brand
might also be of use). For representing services offered by the card/organization, you could use the Service
类型。
如果您查看这些内容,就会发现 Review
type; for rating it, there’s Rating
; and for an "average rating based on multiple ratings or reviews", there’s AggregateRating
。