最后,你需要提供内容的价格信息。
价格
对于观看操作,请指定适用于以下情况的内容价格:
category
是rental
或purchase
。category
为subscription
或externalsubscription
,但订阅者需要额外购买才能观看此内容。
对于监听操作,如果 category
为 subscription
,则可以视需要指定价格。
图 1. 显示 Google 搜索中内容价格的媒体操作。
对于观看操作,请在操作访问规范对象中指定内容的价格:
"potentialAction":{
"@type":"WatchAction",
"target":{
"@type":"EntryPoint",
"urlTemplate":"http://www.example.com/my_favorite_movie?autoplay=true",
"actionPlatform":[ "http://schema.org/DesktopWebPlatform" ]
},
"actionAccessibilityRequirement": {
"@type": "ActionAccessSpecification",
"category": "purchase",
"availabilityStarts": "2019-01-01T00:00Z",
"availabilityEnds": "2019-12-31T00:00Z",
"eligibleRegion": {
"@type": "Country",
"name": "US"
},
"expectsAcceptanceOf": {
"@type": "Offer",
"price": 7.99,
"priceCurrency": "USD",
"seller": {
"@type": "Organization",
"name": "My example seller"
}
}
}
}
对于监听操作,请直接在操作标记对象中指定内容的价格:
"potentialAction":{
"@type":"ListenAction",
"target":{
"@type":"EntryPoint",
"urlTemplate":"http://www.example.com/playlist/top_pop_songs?autoplay=true",
"actionPlatform":[ "http://schema.org/DesktopWebPlatform" ]
},
"expectsAcceptanceOf":{
"@type": "Offer",
"eligibleRegion": {
"@type":"Country",
"name":"US"
},
"category": "subscription",
"name": "Example Music",
"price": 9.99,
"priceCurrency": "USD",
"seller": {
"@type": "Organization",
"name": "My example seller",
"sameAs": "http://www.example.com"
}
}
}
确定价格
执行以下操作:
- 对于观看操作,
- 如果
category
为rental
或purchase
,则您需要提供一次性购买的价格。 - 如果
category
为subscription
或externalsubscription
,但订阅者需要额外购买内容才能观看,则您需要提供额外费用的价格。- 否则,您无需提供
subscription
或externalsubscription
的价格。
- 否则,您无需提供
- 如果
- 对于“聆听操作”
- 如果
category
为subscription
,则可以选择提供订阅价格。
- 如果
如需查看详细示例,请参阅操作访问权限要求示例部分。