Google架构标记 - 事件预订 - 查看操作CTA

时间:2017-06-29 16:45:40

标签: google-schemas

我有一个有效的事件预订标记。我现在正在尝试添加一个ViewAction,但我收到了修改预订CTA而不是View Tickets,如下页所示: https://developers.google.com/gmail/markup/highlights#ticketed_event_reservation

修改预订CTA似乎与酒店预订相关联,因此我不确定为什么这会出现在我的活动预订类型中。我知道action.name并没有改变CTA文本,但它遵循代码。

    <script type="application/ld+json">
    {
    "@context": "http://schema.org",
    "@type": "EventReservation",
      "reservationNumber": "123456",
      "reservationStatus": "http://schema.org/Confirmed",
      "underName": {
        "@type": "Person",
        "name": "FIRSTNAME LASTNAME"
      },
      "reservationFor": {
        "@type": "Event",
        "name": "Michelle Branch",
        "startDate": "2017-07-30 19:00:00.000",
        "location": {
          "@type": "Place",
          "name": "Emos",
          "address": {
            "@type": "PostalAddress",
            "streetAddress": "Emos",
            "addressLocality": "Austin",
            "addressRegion": "Texas",
            "postalCode": "-----",
            "addressCountry": "United States"
          }
        }
      },
      "ticketNumber": "123456",
      "numSeats": "1",
        "url": "URLHERE",
      "action": {
        "@type": "ViewAction",
        "target": "URLHERE",
        "url": "URLHERE",
        "name": "View Order"
      },
      "description": "View Order"
      }
    </script>

0 个答案:

没有答案