宣告動作

schema.org 中的動作代表可對結構化資料執行的動詞或活動。系統支援多種動作類型,且這些動作都可以使用類似的結構化資料定義。

常用動作

如果你在內容中加入 schema.org 實體的標記,可以為這些實體新增前往動作。舉例來說,如要讓 EmailMessage 實體包含 ViewAction Go-To 連結,請填入電子郵件的 potentialAction 屬性,如以下範例所示:

JSON-LD

<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "EmailMessage",
  "potentialAction": {
    "@type": "ViewAction",
    "target": "https://watch-movies.com/watch?movieId=abc123",
    "name": "Watch movie"
  },
  "description": "Watch the 'Avengers' movie online"
}
</script>

微資料

<div itemscope itemtype="http://schema.org/EmailMessage">
  <div itemprop="potentialAction" itemscope itemtype="http://schema.org/ViewAction">
    <link itemprop="target" href="https://watch-movies.com/watch?movieId=abc123"/>
    <meta itemprop="name" content="Watch movie"/>
  </div>
  <meta itemprop="description" content="Watch the 'Avengers' movie online"/>
</div>

請注意,如果其他電子郵件用戶端不支援電子郵件中的結構定義,系統會自動略過上述標記。

行動深層連結

前往動作也可以直接連結至 AndroidiOS 原生行動應用程式中的內容。如要深層連結至應用程式,請加入額外的 target 網址,並以 android-app://ios-app:// 配置編碼,如下所示:

JSON-LD

"target": [
  “<web url>”,
  “android-app://<android package name>/<scheme>/<host>/<path+query>”,
  “ios-app://<App store ID>/<scheme>/<host><path+query>"
]

微資料

<link itemprop="target" href="<web url>"/>
<link itemprop="target" href="android-app://<android package name>/<scheme>/<host>/<path+query>”/>
<link itemprop="target" href="ios-app://<App store ID>/<scheme>/<host>/<path+query>"/>

延續先前的 EmailMessage 範例:

JSON-LD

<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "EmailMessage",
  "name": "Watch movie",
  ... information about the movie ...
  "potentialAction": {
    "@type": "ViewAction",
    "target": [
      "https://watch-movies.com/watch?movieId=abc123",
      "android-app://com.watchmovies.app/http/watch-movies.com/watch?movieId=abc123",
      "ios-app://12345/movieapp/watch-movies.com/watch?movieId=abc123"
    ]
  }
}
</script>

微資料

<div itemscope itemtype="http://schema.org/EmailMessage">
  <meta itemprop="name" content="Watch movie"/>
  ... information about the movie ...
  <div itemprop="potentialAction" itemscope itemtype="http://schema.org/ViewAction">
    <meta itemprop="target" content="https://watch-movies.com/watch?movieId=abc123"/>
    <meta itemprop="target" content="android-app://com.watchmovies.android/http/watch-movies.com/watch?movieId=abc123"/>
    <meta itemprop="target" content="ios://12345/movieapp/watch-movies.com/watch?movieId=abc123"/>
 </div>
</div>

如果使用者沒有您的應用程式,該動作會將使用者帶往您提供的網址。

應用程式內動作

應用程式內動作是在 Gmail 中直接處理,不會將使用者帶往其他網站。應用程式內動作的宣告方式與前往動作類似,但包含額外資訊,方便使用者代理程式 (例如 Gmail) 處理內嵌動作。

您必須為動作宣告 HttpActionHandler,並使用適當的設定。target

舉例來說,您可以為需要使用者核准、確認和確認的電子郵件新增確認按鈕。使用者點選按鈕後,Google 就會向您的服務發出 HTTP 要求,記錄確認訊息。「ConfirmAction」只能與一次互動。

以下範例會在費用報表電子郵件中加入 ConfirmAction 按鈕:

JSON-LD

<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "EmailMessage",
  "potentialAction": {
    "@type": "ConfirmAction",
    "name": "Approve Expense",
    "handler": {
      "@type": "HttpActionHandler",
      "url": "https://myexpenses.com/approve?expenseId=abc123"
    }
  },
  "description": "Approval request for John's $10.13 expense for office supplies"
}
</script>

微資料

<div itemscope itemtype="http://schema.org/EmailMessage">
  <div itemprop="potentialAction" itemscope itemtype="http://schema.org/ConfirmAction">
    <meta itemprop="name" content="Approve Expense"/>
    <div itemprop="handler" itemscope itemtype="http://schema.org/HttpActionHandler">
      <link itemprop="url" href="https://myexpenses.com/approve?expenseId=abc123"/>
    </div>
  </div>
  <meta itemprop="description" content="Approval request for John's $10.13 expense for office supplies"/>
</div>

即將到期的動作

多數情況下,動作只適用於一段時間。與已知日期相關聯的動作 (例如旅遊預訂) 會自動失效。在行程結束後,Gmail 不會顯示這項操作。

您也可以明確地為動作加入到期時間。舉例來說,剪報優待券或儲存優惠代碼的動作可能只適用於特定時間。如要設定顯示動作的時間視窗,請設定動作的 startTimeendTime 屬性:

JSON-LD

<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "EmailMessage",
  "potentialAction": {
    "@type": "ConfirmAction",
    "name": "Save coupon",
    "handler":  {
       "@type": "HttpActionHandler",
       "url": "https://my-coupons.com/approve?couponId=abc123"
    },
    "startTime": "2015-06-01T12:00:00Z",
    "endTime": "2015-06-05T12:00:00Z"
  }
}
</script>

微資料

<div itemscope itemtype="http://schema.org/EmailMessage">
  <div itemprop="potentialAction" itemscope itemtype="http://schema.org/ConfirmAction">
    <meta itemprop="name" content="Save coupon"/>
    <div itemprop="handler" itemscope itemtype="http://schema.org/HttpActionHandler">
      <link itemprop="url" href="https://my-coupons.com/approve?couponId=abc123"/>
    </div>
    <meta itemprop="startTime" content="2015-06-01T12:00:00Z" />
    <meta itemprop="endTime" content="2015-06-05T12:00:00Z" />
  </div>
</div>

延伸閱讀

如要進一步瞭解動作,請參閱: