最后,您需要提供内容的价格信息。
价格
对于观看操作,请在以下情况下指定内容的价格:
- category是- rental或- purchase。
- category为- subscription或- externalsubscription,但订阅者需要额外购买才能观看相应内容。
对于“Listen”操作,如果 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"
      }
    }
  }
}
对于“Listen”(收听)操作,请直接在Action 标记对象中指定内容的价格:
"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提供价格。
 
- 否则,您无需为 
 
- 如果 
- 对于“ListenAction”,请执行以下操作:
- 如果 category为subscription,则可以选择提供订阅的价格。
 
- 如果 
如需查看详细示例,请参阅操作访问权限要求示例部分。