⚠️ Важно: данный сайт не имеет отношения к владельцам schema.org, это всего лишь любительский (неофициальный) перевод. Сайт сделан для тех, кто плохо воспринимает технический английский. Оригинал текста можно найти тут: schema.org/TierBenefitEnumeration. Если сайт оказался полезен, то можете пожертвовать 50 рублей создателями сайта.

TierBenefitEnumeration

Тип перечисления schema.org ?

Этот термин находится в "новой" области — обратная связь по реализации и использование в приложениях и на веб-сайтах могут помочь улучшить определения.

Описание:

Перечисление возможных преимуществ в рамках программы лояльности (для членов).

TierBenefitEnumeration — это тип перечисления в Schema.org, который используется для описания возможных преимуществ, связанных с программами лояльности или членства. Он помогает структурировать информацию о различных уровнях привилегий, которые могут получать участники таких программ.

Основная цель TierBenefitEnumeration состоит в том, чтобы предоставить стандартизированный способ обозначения и классификации различных бонусов и преимуществ, которые могут быть доступны участникам программ лояльности. Это может включать скидки, специальные предложения, доступ к эксклюзивным событиям, улучшенное обслуживание и другие привилегии.

Использование этого типа перечисления позволяет разработчикам и организациям более эффективно передавать информацию о своих программах лояльности, облегчая пользователям понимание того, какие преимущества они могут ожидать на разных уровнях участия. Это также способствует лучшему взаимодействию между различными системами, которые могут обрабатывать данные о программах лояльности, обеспечивая единообразие и совместимость.

В целом, TierBenefitEnumeration является полезным инструментом для организации и представления информации о преимуществах программ лояльности, что в свою очередь может помочь в привлечении и удержании клиентов.

Экземпляры TierBenefitEnumeration могут использоваться в качестве значения для следующих свойств.

Свойство Типы Описание
hasTierBenefit MemberProgramTier Польза для участника для определенного уровня программы лояльности.

Примеры

Пример 1

Пример заметки или HTML разметки.


A member (loyalty) program provided by an OnlineStore. The program has 3 tiers:
- The Silver tier is free to join and provides loyalty points to the member.
- The Gold tier requires sign-up to a creditcard and has the benefit of
  member-only pricing and more loyalty points than the silver tier
- The Platinum tier has an annual fee of $39.99 and has the benefit of
  member-only pricing and more loyalty points than the gold tier.

Use of the MemberProgram is illustrated by an Offer which has a non-member (regular)
price as well as a special member price for the gold and platinum member tiers.

Пример, закодированный в формате JSON-LD в теге <script> HTML.


<script type="application/ld+json">
[
  {
    "@context": "https://schema.org",
    "@type": "OnlineStore",
    "name": "Example Online Store",
    "url": "https://www.example.com",
    "sameAs": [
      "https://example.net/profile/example12",
      "https://example.org/@example34"
    ],
    "logo": "https://www.example.com/assets/images/logo.png",
    "contactPoint": {
      "contactType": "Customer Service",
      "email": "support@example.com",
      "telephone": "+47-99-999-9900"
    },
    "vatID": "FR12345678901",
    "iso6523Code": "0199:724500PMK2A2M1SQX229",
    "hasMemberProgram": {
      "@type": "MemberProgram",
      "name": "Membership Plus",
      "description": "For frequent shoppers this is our top-rated loyalty program",
      "url": "https://www.example.com/membership-plus",
      "hasTiers": [
        {
          "@type": "MemberProgramTier",
          "@id": "#plus-tier-silver",
          "name": "silver",
          "url": "https://www.example.com/membership-plus-silver",
          "hasTierBenefit": [
            "https://schema.org/TierBenefitLoyaltyPoints"
          ],
          "membershipPointsEarned": 5
        },
        {
          "@type": "MemberProgramTier",
          "@id": "#plus-tier-gold",
          "name": "gold",
          "url": "https://www.example.com/membership-plus-gold",
          "hasTierRequirement": {
            "@type": "CreditCard",
            "name":" MyStore Gold Plus"
          },
          "hasTierBenefit": [
            "https://schema.org/TierBenefitLoyaltyPrice",
            "https://schema.org/TierBenefitLoyaltyPoints"
          ],
          "membershipPointsEarned": 10
        },
        {
          "@type": "MemberProgramTier",
          "@id": "#plus-tier-platinum",
          "name": "gold",
          "url": "https://www.example.com/membership-plus-platinum",
          "hasTierRequirement": {
            "@type": "UnitPriceSpecification",
            "price": "39.99",
            "priceCurrency": "USD",
            "referenceQuantity": {
              "@type": "QuantitativeValue",
              "value": "1",
              "unitCode": "ANN"
            }
          },
          "hasTierBenefit": [
            "https://schema.org/TierBenefitLoyaltyPrice",
            "https://schema.org/TierBenefitLoyaltyPoints"
          ],
          "membershipPointsEarned": 15
        }
      ]
    }
  },
  {
    "@context": "https://schema.org",
    "@type": "Product",
    "sku": "44E01-X1100000",
    "gtin14": "98766051104399",
    "image": "https://www.example.com/coat_large_lightblue.jpg",
    "name": "Large light blue coat",
    "description": "Large wool light blue coat for the winter season",
    "color": "light blue",
    "size": "large",
    "offers": [
      {
        "@type": "Offer",
        "url": "https://www.example.com/coat?size=large&color=lightblue",
        "itemCondition": "https://schema.org/NewCondition",
        "availability": "https://schema.org/Backorder",
        "shippingDetails": {
          "@id": "https://www.example.com/shipping#shipping_policy"
        },
        "hasMerchantReturnPolicy": {
          "@id": "https://www.example.com/com/returns#return_policy"
        },
        "priceSpecification": [
          {
            "@type": "PriceSpecification",
            "price": 15,
            "priceCurrency": "USD"
          },
          {
            "@type": "PriceSpecification",
            "validForMemberTier": [
              { "@id": "https://www.example.com/com/members#plus_tier_gold" },
              { "@id": "https://www.example.com/com/members#plus_tier_platinum" }
            ],
            "price": 9.95,
            "priceCurrency": "USD"
          }
        ]
      }
    ]
  }
]
</script>

Структурированное представление примера JSON-LD.

0
@context
https://schema.org
@type
OnlineStore
name
Example Online Store
url
https://www.example.com
sameAs
0
https://example.net/profile/example12
1
https://example.org/@example34
logo
https://www.example.com/assets/images/logo.png
contactPoint
contactType
Customer Service
email
support@example.com
telephone
+47-99-999-9900
vatID
FR12345678901
iso6523Code
0199:724500PMK2A2M1SQX229
hasMemberProgram
@type
MemberProgram
name
Membership Plus
description
For frequent shoppers this is our top-rated loyalty program
url
https://www.example.com/membership-plus
hasTiers
0
@type
MemberProgramTier
@id
#plus-tier-silver
name
silver
url
https://www.example.com/membership-plus-silver
hasTierBenefit
0
https://schema.org/TierBenefitLoyaltyPoints
membershipPointsEarned
5
1
@type
MemberProgramTier
@id
#plus-tier-gold
name
gold
url
https://www.example.com/membership-plus-gold
hasTierRequirement
@type
CreditCard
name
MyStore Gold Plus
hasTierBenefit
0
https://schema.org/TierBenefitLoyaltyPrice
1
https://schema.org/TierBenefitLoyaltyPoints
membershipPointsEarned
10
2
@type
MemberProgramTier
@id
#plus-tier-platinum
name
gold
url
https://www.example.com/membership-plus-platinum
hasTierRequirement
@type
UnitPriceSpecification
price
39.99
priceCurrency
USD
referenceQuantity
@type
QuantitativeValue
value
1
unitCode
ANN
hasTierBenefit
0
https://schema.org/TierBenefitLoyaltyPrice
1
https://schema.org/TierBenefitLoyaltyPoints
membershipPointsEarned
15
1
@context
https://schema.org
@type
Product
sku
44E01-X1100000
gtin14
98766051104399
image
https://www.example.com/coat_large_lightblue.jpg
name
Large light blue coat
description
Large wool light blue coat for the winter season
color
light blue
size
large
offers
0
@type
Offer
url
https://www.example.com/coat?size=large&color=lightblue
itemCondition
https://schema.org/NewCondition
availability
https://schema.org/Backorder
shippingDetails
@id
https://www.example.com/shipping#shipping_policy
hasMerchantReturnPolicy
@id
https://www.example.com/com/returns#return_policy
priceSpecification
0
@type
PriceSpecification
price
15
priceCurrency
USD
1
@type
PriceSpecification
validForMemberTier
0
@id
https://www.example.com/com/members#plus_tier_gold
1
@id
https://www.example.com/com/members#plus_tier_platinum
price
9.95
priceCurrency
USD
Автор: Семён Авдосов [schema.su]
Дата публикации: 16.11.2024
Дата обновления: 20.11.2024
Комментарии
Новые материалы на сайте