2016-10-31 4 views
1

schema.org 마이크로 데이터를 제품 세부 정보 웹 페이지에 추가하고 있습니다.특정 사용자 유형에 대한 Schema.org 마크 업 제안

저는 제품 엔터티를 추가했으며 이와 관련된 다양한 제안을했습니다.

하나의 혜택이 모든 사용자에게 유효하며 다른 혜택은 회원 전용 할인 가격임을 나타내는 방법은 무엇입니까?

Schema.org 내가 이것에 대한 BusinessEntityType 사용할 수 있습니다 나타냅니다 - 어쩌면 - http://schema.org/BusinessEntityType

를 가리키는 개인 사용자

좋은 관계

http://purl.org/goodrelations/v1#Enduser

을하지만, 여기에 흔적 차가운 간다 - EndEuser를 BusinessEntityType으로 추가하는 방법이나 각 EndUser를 '멤버'유형 또는 '비 멤버'유형으로 표시하는 방법을 모르겠습니다.

다음은 제품에서 발췌 한 것으로, 하나의 혜택을 나타내는 코드입니다. 비회원 사용자를위한 것입니다.

<div class="price" itemprop="offers" itemscope itemtype="https://schema.org/Offer"> 
    <span itemprop="priceSpecification" itemscope itemtype="https://schema.org/PriceSpecification"> 
     <meta itemprop="valueAddedTaxIncluded" content="false" /> 
     <span itemprop="priceCurrency" content="GBP">£</span><span itemprop="price">2.76</span><span class="vat-pricing-wrap"> excl VAT</span> 
    </span> 
</div> 

다른 스 니펫 - 나는 이것을 독점 회원 전용으로 제공하고자합니다.

<div class="price" itemprop="offers" itemscope itemtype="https://schema.org/Offer"> 
    <span itemprop="priceSpecification" itemscope itemtype="https://schema.org/PriceSpecification"> 
     <meta itemprop="valueAddedTaxIncluded" content="false" /> 
     <span itemprop="priceCurrency" content="GBP">£</span><span itemprop="price">1.76</span><span class="vat-pricing-wrap"> excl VAT</span> 
    </span> 
</div> 

답변

0
eligibleCustomerType

속성에 대한 기대 값은 BusinessEntityType 형의 열거이다.

Schema.org 네 개의 값을 나열 (Business, Enduser, PublicInstitution, Reseller)를 GoodRelations의 어휘에서. GoodRelations 그 자체 doesn’t define more values.

이 네 가지 값이 귀하의 경우에 적합하지 않은 것처럼 보이기 때문에 다른 사람이 정의한 적절한 유형을 찾는 것이 가장 좋습니다. 이러한 유형이 없다면 "깨끗한"방법은 자신의 유형을 사용하는 것입니다 (예 : (당신이 example.com을 제어하는 ​​것으로 가정) :

<link itemprop="eligibleCustomerType" href="http://example.com/types/Member" /> 

그리 깨끗한 방법을 (Schema.org은 모든 속성이 있습니다) 대신 문자열 값을 사용하는 것, 예를 들면 :

<meta itemprop="eligibleCustomerType" content="Member" />