Я создаю сайт для местного салона красоты. Они предлагают такие услуги, как массаж и различные косметические процедуры. Это все видно на 1 обзорной странице (прайс-лист)
Я выяснил, https://schema.org/Product
можно использовать для услуг:
Любой предлагаемый товар или услуга. Например: пара обуви; билет на концерт; аренда автомобиля; стрижка
Первый вопрос, могу ли я игнорировать такие поля, как доступность и состояние?
Во-вторых, я должен перечислить этот продукт как ItemOffered
внутри Offer
? Или это не правильный путь?
Пример:
{
"@context": "http://schema.org",
"@type": "WebPageElement",
"offers": {
"@type": "Offer",
"itemOffered": [
{
"@type": "Product",
"@id": "/beauty-treatment-a",
"description": "Short description with details",
"name": "Beauty Treatment A",
"offers": {
"@type": "Offer",
"price": "18.28",
"priceCurrency": "EUR",
"description": "Same description",
"name": "Same name",
"image": {
"@context": "http://schema.org",
"@type": "ImageObject",
"contentUrl": "image-a.jpg",
"description": "Same name",
"width": 640,
"height": 640
}
}
},
{
"@type": "Product",
"@id": "/beauty-treatment-b",
"description": "Short description with details",
"name": "Beauty Treatment B",
"offers": {
"@type": "Offer",
"price": "18.28",
"priceCurrency": "EUR",
"description": "Same description",
"name": "Same name",
"image": {
"@context": "http://schema.org",
"@type": "ImageObject",
"contentUrl": "image-b.jpg",
"description": "Same name",
"width": 640,
"height": 640
}
}
]
}
}