剪輯片段的內容標記屬性

本節提供 PreviewRecapReviewHighlightBlooperBehindTheSceneDeletedSceneInterview 片段類型

預覽規格表

屬性 預期類型 說明
@context 文字 必要 - 一律設為 ["http://schema.org", {"@language": "xx"}]
  • xx 代表動態饋給中字串的語言。每個根實體內容都應將其 @language 設為適當的 BCP 47 格式語言代碼。舉例來說,如果將語言設為西班牙文,即使字幕/配音語言是英文,系統仍會假設 namedescription 的值為西班牙文。
@type 文字 必要 - 一律設為 Preview
@id 網址 必要 - 預覽的 ID,以 URI 格式表示。例如 https://example.com/1234abc
@id 必須符合下列規定:
  • 這個名稱在所有目錄中是獨一無二的。
  • 完全是靜態的。這個 ID 必須固定,且不會隨時間改變。
  • 格式為統一資源識別碼 (URI)。
  • 用於 @id 值的網域必須由貴機構所擁有。
name 文字 必要 - 預覽短片的名稱。
description 文字 必填 - 預覽畫面的說明,上限為 300 個字元。
potentialAction WatchAction 必要 - 提供動作詳細資料動作標記物件
mainEntity.@type 文字 必要 - 使用 mainEntity 屬性代表這個預覽畫面所屬的實體。

這個屬性可採用下列值:
mainEntity 屬性也必須是動態饋給中的頂層實體。如本說明文件所述,請根據相應的規格表,為相應類型加入所有必要的中繼資料。這些 mainEntity 類型可以選擇加入深層連結,如透過 potentialAction 屬性傳送。
mainEntity.@id 網址 必要 - 對應實體的 @id。實體必須存在於動態饋給中,且 @idPreview @id 不同。

預覽範例

下例顯示左側分頁上 Preview 片段的標記, 右側分頁中也連結了 mainEntity這個範例並未包含 mainEntity 類型的連結。

預覽

以下片段代表運動事件的預覽畫面。體育賽事 是由 mainEntity 屬性的 @type@id 指定。

{
  "@context": ["http://schema.org", {"@language": "en"}],
  "@type": "Preview"
  "@id": "https://www.example.com/preview_clip/teama-teamb",
  "name": "A preview for Team A vs Team B"
  "description": "An analysis of two teams, Team A and Team B, before their game."
  "potentialAction": {
      "@type": "WatchAction",
      "target": {
        "@type": "EntryPoint",
        "urlTemplate": "http://www.example.com/premium/teama_vs_teamb_pregame",
        "inLanguage": "en",
        "actionPlatform": [
          "http://schema.org/DesktopWebPlatform",
          "http://schema.org/MobileWebPlatform",
          "http://schema.org/AndroidPlatform",
          "http://schema.org/IOSPlatform",
          "http://schema.googleapis.com/GoogleVideoCast"
        ]
      },
      "actionAccessibilityRequirement": {
        "@type": "ActionAccessSpecification",
        "category": "subscription",
        "availabilityStarts": "2019-09-09T10:00:00Z",
        "availabilityEnds": "2019-09-31T10:00:00Z",
        "requiresSubscription": {
          "@type": "MediaSubscription",
          "@id": "http://www.example.com/premium_subscription",
          "name": "Example Premium",
          "sameAs": "http://www.example.com/premium_subscription"
        },
        "eligibleRegion": [
          {
            "@type": "Country",
            "name": "US"
          },
          {
            "@type": "Country",
            "name": "CA"
          }
        ]
      }
    }
  "mainEntity": {
    "@type": "SportsEvent",
    "@id": "https://www.example.com/game/2019-09-12/teama-teamb"
  }
}

SportsEvent

下列程式碼 mainEntityPreview 片段。這個實體不含深層連結。如果您有深度 連結,您就可以使用 potentialAction 屬性新增這些連結。

{
  "@context": ["http://schema.org", {"@language": "en"}],
  "@type":"SportsEvent",
  "@id": "https://www.example.com/game/2019-09-12/teama-teamb",
  "name":"2019 Professional Basketball Finals, Game 6: Team A at Team B",
  "sport":"https://en.wikipedia.org/wiki/Basketball",
  "description": [
    {
      "@language": "en",
      "@value": "Game 6 of the 2019 Professional Basketball Finals. Team A leads the series 3-2 against Team B."
    },
    {
      "@language": "en",
      "@value": "2019 Professional Basketball, Game 6. Team A at Team B."
    }
  ],
  "startDate": "2018-09-16T21:10-08:00",
  "homeTeam":{
    "@type":"SportsTeam",
    "name":"Team B",
    "sport":"https://en.wikipedia.org/wiki/Basketball",
    "parentOrganization":{
      "@type":"SportsOrganization",
      "name":"Professional Basketball League",
      "sameAs":"http://www.example.com/professional_basketball_league"
    }
    "athlete":[
      {
        "@type":"Person",
        "name":"John doe"
      }
    ]
  },
  "awayTeam":{
    "@type":"SportsTeam",
    "name":"Team A",
    "sport":"https://en.wikipedia.org/wiki/Basketball",
    "athlete":[
      {
        "@type":"Person",
        "name":"Jane Doe"
      }
    ]
  },
  "location":{
    "@type":"Place",
    "name":"Example Stadium",
    "address":{
      "@type":"PostalAddress",
      "streetAddress":"1600 Amphitheatre Pkwy",
      "addressLocality":"Mountain View",
      "addressRegion":"CA",
      "postalCode":"94043",
      "addressCountry":"US"
    }
  }
  "identifier": [
    {
      "@type": "PropertyValue",
      "propertyID": "TMS_ID",
      "value":  "TMS ID of this game"
    }
  ]
}

Recap 規格表格

屬性 預期類型 說明
@context 文字 必要 - 一律設為 ["http://schema.org", {"@language": "xx"}]
  • xx 代表動態饋給中字串的語言。每個根實體內容都應將其 @language 設為適當的 BCP 47 格式語言代碼。舉例來說,如果將語言設為西班牙文,即使字幕/配音語言是英文,系統仍會假設 namedescription 的值為西班牙文。
@type 文字 必要 - 一律設為 Recap
@id 網址 必要 - 此為 URI 格式的重點回顧 ID;例如 https://example.com/1234abc
@id 必須符合下列規定:
  • 這個名稱在所有目錄中是獨一無二的。
  • 完全是靜態的。這個 ID 必須固定,且不會隨時間改變。
  • 格式為統一資源識別碼 (URI)。
  • 用於 @id 值的網域必須由貴機構所擁有。
name 文字 必要 - 回顧短片的名稱。
description 文字 必填 - 年度回顧的說明,上限為 300 個字元。
potentialAction WatchAction 必要 - 提供動作詳細資料動作標記物件
mainEntity.@type 文字 必要 - 使用 mainEntity 屬性代表這個 Recap 所屬的實體。

這個屬性可具有下列值:
mainEntity 屬性也必須是動態饋給中的頂層實體。如本說明文件所述,請根據相應的規格表,為相應類型加入所有必要的中繼資料。這些 mainEntity 類型可以選擇加入深層連結,如透過 potentialAction 屬性傳送。
mainEntity.@id 網址 必要 - 對應實體的 @id。實體必須存在於動態饋給中,且 @idRecap @id 不同。

Recap 範例

下例顯示左側分頁上 Recap 片段的標記, 右側分頁中也連結了 mainEntity這個範例並未包含 mainEntity 類型的連結。

回顧

以下片段代表運動賽事的回顧。這項運動賽事是 由 mainEntity 屬性的 @type@id 指定。

{
  "@context": ["http://schema.org", {"@language": "en"}],
  "@type": "Recap"
  "@id": "https://www.example.com/recap_clip/teama-teamb",
  "name": "A recap for Team A vs Team B"
  "description": "An analysis of two teams, Team A and Team B, after their game."
  "potentialAction": {
      "@type": "WatchAction",
      "target": {
        "@type": "EntryPoint",
        "urlTemplate": "http://www.example.com/premium/teama_vs_teamb_recap",
        "inLanguage": "en",
        "actionPlatform": [
          "http://schema.org/DesktopWebPlatform",
          "http://schema.org/MobileWebPlatform",
          "http://schema.org/AndroidPlatform",
          "http://schema.org/IOSPlatform",
          "http://schema.googleapis.com/GoogleVideoCast"
        ]
      },
      "actionAccessibilityRequirement": {
        "@type": "ActionAccessSpecification",
        "category": "subscription",
        "availabilityStarts": "2019-09-09T10:00:00Z",
        "availabilityEnds": "2019-09-31T10:00:00Z",
        "requiresSubscription": {
          "@type": "MediaSubscription",
          "@id": "http://www.example.com/premium_subscription",
          "name": "Example Premium",
          "sameAs": "http://www.example.com/premium_subscription"
        },
        "eligibleRegion": [
          {
            "@type": "Country",
            "name": "US"
          },
          {
            "@type": "Country",
            "name": "CA"
          }
        ]
      }
    }
  "mainEntity": {
    "@type": "SportsEvent",
    "@id": "https://www.example.com/game/2019-09-12/teama-teamb"
  }
}

SportsEvent

下列程式碼 mainEntityRecap 片段。這個實體不含深層連結。如果您有深度 連結,您就可以使用 potentialAction 屬性新增這些連結。

{
  "@context": ["http://schema.org", {"@language": "en"}],
  "@type":"SportsEvent",
  "@id": "https://www.example.com/game/2019-09-12/teama-teamb",
  "name":"2019 Professional Basketball Finals, Game 6: Team A at Team B",
  "sport":"https://en.wikipedia.org/wiki/Basketball",
  "description": [
    {
      "@language": "en",
      "@value": "Game 6 of the 2019 Professional Basketball Finals. Team A leads the series 3-2 against Team B."
    },
    {
      "@language": "en",
      "@value": "2019 Professional Basketball, Game 6. Team A at Team B."
    }
  ],
  "startDate": "2018-09-16T21:10-08:00",
  "homeTeam":{
    "@type":"SportsTeam",
    "name":"Team B",
    "sport":"https://en.wikipedia.org/wiki/Basketball",
    "parentOrganization":{
      "@type":"SportsOrganization",
      "name":"Professional Basketball League",
      "sameAs":"http://www.example.com/professional_basketball_league"
    }
    "athlete":[
      {
        "@type":"Person",
        "name":"John doe"
      }
    ]
  },
  "awayTeam":{
    "@type":"SportsTeam",
    "name":"Team A",
    "sport":"https://en.wikipedia.org/wiki/Basketball",
    "athlete":[
      {
        "@type":"Person",
        "name":"Jane Doe"
      }
    ]
  },
  "location":{
    "@type":"Place",
    "name":"Example Stadium",
    "address":{
      "@type":"PostalAddress",
      "streetAddress":"1600 Amphitheatre Pkwy",
      "addressLocality":"Mountain View",
      "addressRegion":"CA",
      "postalCode":"94043",
      "addressCountry":"US"
    }
  }
  "identifier": [
    {
      "@type": "PropertyValue",
      "propertyID": "TMS_ID",
      "value":  "TMS ID of this game"
    }
  ]
}

查看規格表格

屬性 預期類型 說明
@context 文字 必要 - 一律設為 ["http://schema.org", {"@language": "xx"}]
  • xx 代表動態饋給中字串的語言。每個根實體內容都應將其 @language 設為適當的 BCP 47 格式語言代碼。舉例來說,如果將語言設為西班牙文,即使字幕/配音語言是英文,系統仍會假設 namedescription 的值為西班牙文。
@type 文字 必要 - 一律設為 Review
@id 網址 必要 - 評論 ID,以 URI 格式表示;例如 https://example.com/1234abc
@id 必須符合下列規定:
  • 這個名稱在所有目錄中是獨一無二的。
  • 完全是靜態的。這個 ID 必須固定,且不會隨時間改變。
  • 格式為統一資源識別碼 (URI)。
  • 用於 @id 值的網域必須由貴機構所擁有。
name 文字 必填 - 評論片段名稱。
description 文字 必填 - 評論的說明,最多 300 個半形字元。
potentialAction WatchAction 必要 - 提供動作詳細資料動作標記物件
mainEntity.@type 文字 必要 - 使用 mainEntity 屬性代表這則評論所屬的實體。

這個屬性可採用下列值:
mainEntity 屬性也必須是動態饋給中的頂層實體。如本說明文件所述,請根據相應的規格表,為相應類型加入所有必要的中繼資料。這些 mainEntity 類型可以選擇加入深層連結,如透過 potentialAction 屬性傳送。
mainEntity.@id 網址 必要 - 對應實體的 @id。實體必須存在於動態饋給中,且 @idReview @id 不同。

查看範例

下例顯示左側分頁上 Review 片段的標記, 右側分頁中也連結了 mainEntity此範例包含深層連結。

檢閱

以下剪輯片段代表電影評論。「電影」指定的 mainEntity 屬性的 @type@id

{
  "@context": ["http://schema.org", {"@language": "en"}],
  "@type": "Review"
  "@id": "https://www.example.com/review_clip/abc",
  "name": "A review of ABC"
  "description": "A no-spoiler review of the Sci-Fi Movie, ABC."
  "potentialAction": {
      "@type": "WatchAction",
      "target": {
        "@type": "EntryPoint",
        "urlTemplate": "https://www.example.com/review_clip/abc",
        "inLanguage": "en",
        "actionPlatform": [
          "http://schema.org/DesktopWebPlatform",
          "http://schema.org/MobileWebPlatform",
          "http://schema.org/AndroidPlatform",
          "http://schema.org/IOSPlatform",
          "http://schema.googleapis.com/GoogleVideoCast"
        ]
      },
      "actionAccessibilityRequirement": {
        "@type": "ActionAccessSpecification",
        "category": "subscription",
        "availabilityStarts": "2019-09-09T10:00:00Z",
        "availabilityEnds": "2019-09-31T10:00:00Z",
        "requiresSubscription": {
          "@type": "MediaSubscription",
          "@id": "http://www.example.com/premium_subscription",
          "name": "Example Premium",
          "sameAs": "http://www.example.com/premium_subscription"
        },
        "eligibleRegion": [
          {
            "@type": "Country",
            "name": "US"
          },
          {
            "@type": "Country",
            "name": "CA"
          }
        ]
      }
    }
  "mainEntity": {
    "@type": "Movie",
    "@id": "https://www.example.com/movie/abc"
  }
}

電影

下列程式碼 mainEntityReview 片段。這個實體的potentialAction包含深層連結 資源。

{
  "@context": ["http://schema.org", {"@language": "en"}],
  "@type": "Movie",
  "@id": "https://www.example.com/movie/abc",
  "url": "https://www.example.com/movie/abc",
  "name": "My Favorite Movie",
  "potentialAction": {
    "@type": "WatchAction",
    "target": {
      "@type": "EntryPoint",
      "urlTemplate": "http://www.example.com/my_favorite_movie?autoplay=true",
      "inLanguage": "en",
      "actionPlatform": [
        "http://schema.org/DesktopWebPlatform",
        "http://schema.org/MobileWebPlatform",
        "http://schema.org/AndroidPlatform",
        "http://schema.org/AndroidTVPlatform",
        "http://schema.org/IOSPlatform",
        "http://schema.googleapis.com/GoogleVideoCast"
      ]
    },
    "actionAccessibilityRequirement": {
      "@type": "ActionAccessSpecification",
      "category": "subscription",
      "availabilityStarts": "2018-07-21T10:35:29Z",
      "availabilityEnds": "2019-10-21T10:35:29Z",
      "requiresSubscription": {
          "@type": "MediaSubscription",
          "name": "Example Package",
          "commonTier": true,
          "@id": "https://example.com/package/example"
      },
      "eligibleRegion": [
        {
          "@type": "Country",
          "name": "US"
        },
        {
          "@type": "Country",
          "name": "CA"
        }
      ]
    }
  },
  "sameAs": "https://en.wikipedia.org/wiki/my_favorite_movie",
  "releasedEvent": {
    "@type": "PublicationEvent",
    "startDate": "2008-01-20",
    "location": {
      "@type": "Country",
      "name": "US"
    }
  },
  "popularityScore": {
    "@type": "PopularityScoreSpecification",
    "value": 78,
    "eligibleRegion": [
      {
        "@type": "Country",
        "name": "US"
      },
      {
        "@type": "Country",
        "name": "CA"
      }
    ]
  },
  "description": "This is my favorite movie.",
  "actor": [
    {
      "@type": "Person",
      "name": "John Doe",
      "sameAs": "https://en.wikipedia.org/wiki/John_Doe"
    },
    {
      "@type": "Person",
      "name": "Jane Doe",
      "sameAs": "https://en.wikipedia.org/wiki/Jane_Doe"
    }
  ],
  "identifier": [
    {
      "@type": "PropertyValue",
      "propertyID": "IMDB_ID",
      "value":  "tt0123456"
    }
  ]
}

醒目顯示規格表格

屬性 預期類型 說明
@context 文字 必要 - 一律設為 ["http://schema.org", {"@language": "xx"}]
  • xx 代表動態饋給中字串的語言。每個根實體內容都應將其 @language 設為適當的 BCP 47 格式語言代碼。舉例來說,如果將語言設為西班牙文,即使字幕/配音語言是英文,系統仍會假設 namedescription 的值為西班牙文。
@type 文字 必要 - 一律設為 Highlight
@id 網址 必要 - 醒目顯示的 ID,以 URI 格式表示;例如 https://example.com/1234abc
@id 必須符合下列規定:
  • 這個名稱在所有目錄中是獨一無二的。
  • 完全是靜態的。這個 ID 必須固定,且不會隨時間改變。
  • 格式為統一資源識別碼 (URI)。
  • 用於 @id 值的網域必須由貴機構所擁有。
name 文字 必要 - 精選剪輯片段的名稱。
description 文字 必填 - 重點介紹的說明,上限為 300 個字元。
potentialAction WatchAction 必要 - 提供動作詳細資料動作標記物件
mainEntity.@type 文字 必要 - 使用 mainEntity 屬性代表這項精選內容所屬的實體。

這個屬性可採用下列值:
mainEntity 屬性也必須是動態饋給中的頂層實體。如本說明文件所述,請根據相應的規格表,為相應類型加入所有必要的中繼資料。這些 mainEntity 類型可以選擇加入深層連結,如透過 potentialAction 屬性傳送。
mainEntity.@id 網址 必要 - 對應實體的 @id。實體必須存在於動態饋給中,且 @idHighlight @id 不同。

醒目顯示範例

下例顯示左側分頁上 Highlight 片段的標記 且已在右側分頁中連結 mainEntity本例並未提供 mainEntity 類型的深層連結。

醒目顯示

以下片段呈現體育賽事的精華片段。運動 事件是由 mainEntity 屬性的 @type@id 指定。

{
  "@context": ["http://schema.org", {"@language": "en"}],
  "@type": "Highlight"
  "@id": "https://www.example.com/highlight_clip/teama-teamb",
  "name": "Highlight for the Team A vs Team B game"
  "description": "Highlight for the Team A vs Team B game."
  "potentialAction": {
      "@type": "WatchAction",
      "target": {
        "@type": "EntryPoint",
        "urlTemplate": "http://www.example.com/premium/teama_vs_teamb_highlight",
        "inLanguage": "en",
        "actionPlatform": [
          "http://schema.org/DesktopWebPlatform",
          "http://schema.org/MobileWebPlatform",
          "http://schema.org/AndroidPlatform",
          "http://schema.org/IOSPlatform",
          "http://schema.googleapis.com/GoogleVideoCast"
        ]
      },
      "actionAccessibilityRequirement": {
        "@type": "ActionAccessSpecification",
        "category": "subscription",
        "availabilityStarts": "2019-09-09T10:00:00Z",
        "availabilityEnds": "2019-09-31T10:00:00Z",
        "requiresSubscription": {
          "@type": "MediaSubscription",
          "@id": "http://www.example.com/premium_subscription",
          "name": "Example Premium",
          "sameAs": "http://www.example.com/premium_subscription"
        },
        "eligibleRegion": [
          {
            "@type": "Country",
            "name": "US"
          },
          {
            "@type": "Country",
            "name": "CA"
          }
        ]
      }
    }
  "mainEntity": {
    "@type": "SportsEvent",
    "@id": "https://www.example.com/game/2019-09-12/teama-teamb"
  }
}

SportsEvent

下列程式碼 mainEntityHighlight 片段。這個實體不含深層連結。如果您有深度 連結,您就可以使用 potentialAction 屬性新增這些連結。

{
  "@context": ["http://schema.org", {"@language": "en"}],
  "@type":"SportsEvent",
  "@id": "https://www.example.com/game/2019-09-12/teama-teamb",
  "name":"2019 Professional Basketball Finals, Game 6: Team A at Team B",
  "sport":"https://en.wikipedia.org/wiki/Basketball",
  "description": [
    {
      "@language": "en",
      "@value": "Game 6 of the 2019 Professional Basketball Finals. Team A leads the series 3-2 against Team B."
    },
    {
      "@language": "en",
      "@value": "2019 Professional Basketball, Game 6. Team A at Team B."
    }
  ],
  "startDate": "2018-09-16T21:10-08:00",
  "homeTeam":{
    "@type":"SportsTeam",
    "name":"Team B",
    "sport":"https://en.wikipedia.org/wiki/Basketball",
    "parentOrganization":{
      "@type":"SportsOrganization",
      "name":"Professional Basketball League",
      "sameAs":"http://www.example.com/professional_basketball_league"
    }
    "athlete":[
      {
        "@type":"Person",
        "name":"John doe"
      }
    ]
  },
  "awayTeam":{
    "@type":"SportsTeam",
    "name":"Team A",
    "sport":"https://en.wikipedia.org/wiki/Basketball",
    "athlete":[
      {
        "@type":"Person",
        "name":"Jane Doe"
      }
    ]
  },
  "location":{
    "@type":"Place",
    "name":"Example Stadium",
    "address":{
      "@type":"PostalAddress",
      "streetAddress":"1600 Amphitheatre Pkwy",
      "addressLocality":"Mountain View",
      "addressRegion":"CA",
      "postalCode":"94043",
      "addressCountry":"US"
    }
  }
  "identifier": [
    {
      "@type": "PropertyValue",
      "propertyID": "TMS_ID",
      "value":  "TMS ID of this game"
    }
  ]
}

Blooper 規格表格

屬性 預期類型 說明
@context 文字 必要 - 一律設為 ["http://schema.org", {"@language": "xx"}]
  • xx 代表動態饋給中字串的語言。每個根實體內容都應將其 @language 設為適當的 BCP 47 格式語言代碼。舉例來說,如果將語言設為西班牙文,即使字幕/配音語言是英文,系統仍會假設 namedescription 的值為西班牙文。
@type 文字 必要 - 一律設為 Blooper
@id 網址 必要 - NG 片段的 ID,以 URI 格式表示;例如 https://example.com/1234abc
@id 必須符合下列規定:
  • 這個名稱在所有目錄中是獨一無二的。
  • 完全是靜態的。這個 ID 必須固定,且不會隨時間改變。
  • 格式為統一資源識別碼 (URI)。
  • 用於 @id 值的網域必須由貴機構所擁有。
name 文字 必要 - NG 片段的名稱。
description 文字 必填 - NG 的說明,限制為 300 個字元。
potentialAction WatchAction 必要 - 提供動作詳細資料動作標記物件
mainEntity.@type 文字 必要 - 使用 mainEntity 屬性代表這個 NG 片段所屬的實體。

這個屬性可具有下列值:
mainEntity 屬性也必須是動態饋給中的頂層實體。如本說明文件所述,請根據相應的規格表,為相應類型加入所有必要的中繼資料。這些 mainEntity 類型可以選擇加入深層連結,如透過 potentialAction 屬性傳送。
mainEntity.@id 網址 必要 - 對應實體的 @id。實體必須存在於動態饋給中,且 @idBlooper @id 不同。

Blooper 範例

下例顯示左側分頁上 Blooper 片段的標記, 右側分頁中也連結了 mainEntity此範例包含深層連結。

Blooper

以下片段代表電影的 NG 片段。這部電影是 由 mainEntity 屬性的 @type@id 指定。

{
  "@context": ["http://schema.org", {"@language": "en"}],
  "@type": "Blooper"
  "@id": "https://www.example.com/blooper_abc",
  "name": "ABC Bloopers"
  "description": "Bloopers during the filming of ABC"
  "potentialAction": {
      "@type": "WatchAction",
      "target": {
        "@type": "EntryPoint",
        "urlTemplate": "https://www.example.com/blooper_abc",
        "inLanguage": "en",
        "actionPlatform": [
          "http://schema.org/DesktopWebPlatform",
          "http://schema.org/MobileWebPlatform",
          "http://schema.org/AndroidPlatform",
          "http://schema.org/IOSPlatform",
          "http://schema.googleapis.com/GoogleVideoCast"
        ]
      },
      "actionAccessibilityRequirement": {
        "@type": "ActionAccessSpecification",
        "category": "subscription",
        "availabilityStarts": "2019-09-09T10:00:00Z",
        "availabilityEnds": "2019-09-31T10:00:00Z",
        "requiresSubscription": {
          "@type": "MediaSubscription",
          "@id": "http://www.example.com/premium_subscription",
          "name": "Example Premium",
          "sameAs": "http://www.example.com/premium_subscription"
        },
        "eligibleRegion": [
          {
            "@type": "Country",
            "name": "US"
          },
          {
            "@type": "Country",
            "name": "CA"
          }
        ]
      }
    }
  "mainEntity": {
    "@type": "Movie",
    "@id": "https://www.example.com/movie/abc"
  }
}

電影

下列程式碼 mainEntityBlooper 片段。這個實體的potentialAction包含深層連結 資源。

{
  "@context": ["http://schema.org", {"@language": "en"}],
  "@type": "Movie",
  "@id": "https://www.example.com/movie/abc",
  "url": "https://www.example.com/movie/abc",
  "name": "My Favorite Movie",
  "potentialAction": {
    "@type": "WatchAction",
    "target": {
      "@type": "EntryPoint",
      "urlTemplate": "http://www.example.com/my_favorite_movie?autoplay=true",
      "inLanguage": "en",
      "actionPlatform": [
        "http://schema.org/DesktopWebPlatform",
        "http://schema.org/MobileWebPlatform",
        "http://schema.org/AndroidPlatform",
        "http://schema.org/AndroidTVPlatform",
        "http://schema.org/IOSPlatform",
        "http://schema.googleapis.com/GoogleVideoCast"
      ]
    },
    "actionAccessibilityRequirement": {
      "@type": "ActionAccessSpecification",
      "category": "subscription",
      "availabilityStarts": "2018-07-21T10:35:29Z",
      "availabilityEnds": "2019-10-21T10:35:29Z",
      "requiresSubscription": {
          "@type": "MediaSubscription",
          "name": "Example Package",
          "commonTier": true,
          "@id": "https://example.com/package/example"
      },
      "eligibleRegion": [
        {
          "@type": "Country",
          "name": "US"
        },
        {
          "@type": "Country",
          "name": "CA"
        }
      ]
    }
  },
  "sameAs": "https://en.wikipedia.org/wiki/my_favorite_movie",
  "releasedEvent": {
    "@type": "PublicationEvent",
    "startDate": "2008-01-20",
    "location": {
      "@type": "Country",
      "name": "US"
    }
  },
  "popularityScore": {
    "@type": "PopularityScoreSpecification",
    "value": 78,
    "eligibleRegion": [
      {
        "@type": "Country",
        "name": "US"
      },
      {
        "@type": "Country",
        "name": "CA"
      }
    ]
  },
  "description": "This is my favorite movie.",
  "actor": [
    {
      "@type": "Person",
      "name": "John Doe",
      "sameAs": "https://en.wikipedia.org/wiki/John_Doe"
    },
    {
      "@type": "Person",
      "name": "Jane Doe",
      "sameAs": "https://en.wikipedia.org/wiki/Jane_Doe"
    }
  ],
  "identifier": [
    {
      "@type": "PropertyValue",
      "propertyID": "IMDB_ID",
      "value":  "tt0123456"
    }
  ]
}

「Scene」規格表格

屬性 預期類型 說明
@context 文字 必要 - 一律設為 ["http://schema.org", {"@language": "xx"}]
  • xx 代表動態饋給中字串的語言。每個根實體內容都應將其 @language 設為適當的 BCP 47 格式語言代碼。舉例來說,如果將語言設為西班牙文,即使字幕/配音語言是英文,系統仍會假設 namedescription 的值為西班牙文。
@type 文字 必要 - 一律設為 BehindTheScene
@id 網址 必要 - 剪輯的 ID,以 URI 格式表示;例如 https://example.com/1234abc
@id 必須符合下列規定:
  • 這個名稱在所有目錄中是獨一無二的。
  • 完全是靜態的。這個 ID 必須固定,且不會隨時間改變。
  • 格式為統一資源識別碼 (URI)。
  • 用於 @id 值的網域必須由貴機構所擁有。
name 文字 必要 - 幕後花絮短片的名稱。
description 文字 必填 - 幕後花絮短片的說明,長度上限為 300 個半形字元。
potentialAction WatchAction 必要 - 提供動作詳細資料動作標記物件
mainEntity.@type 文字 必要 - 使用 mainEntity 屬性代表這個幕後片段所屬的實體。

這個屬性可具有下列值:
mainEntity 屬性也必須是動態饋給中的頂層實體。如本說明文件所述,請根據相應的規格表,為相應類型加入所有必要的中繼資料。這些 mainEntity 類型可以選擇加入深層連結,如透過 potentialAction 屬性傳送。
mainEntity.@id 網址 必要 - 對應實體的 @id。實體必須存在於動態饋給中,且 @idBehindTheScene @id 不同。

範例:TheScene 後方範例

以下範例顯示左側 BehindTheScene 片段的標記 分頁和連結 mainEntity這個範例中 連結。

BehindTheScene

以下內容代表某部電影的幕後花絮短片。這部電影是 由 mainEntity 屬性的 @type@id 指定。

{
  "@context": ["http://schema.org", {"@language": "en"}],
  "@type": "BehindTheScene"
  "@id": "https://www.example.com/behind_the_scene_abc",
  "name": "ABC Behind the scene"
  "description": "Behind the scene of ABC."
  "potentialAction": {
      "@type": "WatchAction",
      "target": {
        "@type": "EntryPoint",
        "urlTemplate": "https://www.example.com/behind_the_scene_abc",
        "inLanguage": "en",
        "actionPlatform": [
          "http://schema.org/DesktopWebPlatform",
          "http://schema.org/MobileWebPlatform",
          "http://schema.org/AndroidPlatform",
          "http://schema.org/IOSPlatform",
          "http://schema.googleapis.com/GoogleVideoCast"
        ]
      },
      "actionAccessibilityRequirement": {
        "@type": "ActionAccessSpecification",
        "category": "subscription",
        "availabilityStarts": "2019-09-09T10:00:00Z",
        "availabilityEnds": "2019-09-31T10:00:00Z",
        "requiresSubscription": {
          "@type": "MediaSubscription",
          "@id": "http://www.example.com/premium_subscription",
          "name": "Example Premium",
          "sameAs": "http://www.example.com/premium_subscription"
        },
        "eligibleRegion": [
          {
            "@type": "Country",
            "name": "US"
          },
          {
            "@type": "Country",
            "name": "CA"
          }
        ]
      }
    }
  "mainEntity": {
    "@type": "Movie",
    "@id": "https://www.example.com/movie/abc"
  }
}

電影

下列程式碼 mainEntityBehindTheScene 片段。這個實體的深層連結 potentialAction 屬性。

{
  "@context": ["http://schema.org", {"@language": "en"}],
  "@type": "Movie",
  "@id": "https://www.example.com/movie/abc",
  "url": "https://www.example.com/movie/abc",
  "name": "My Favorite Movie",
  "potentialAction": {
    "@type": "WatchAction",
    "target": {
      "@type": "EntryPoint",
      "urlTemplate": "http://www.example.com/my_favorite_movie?autoplay=true",
      "inLanguage": "en",
      "actionPlatform": [
        "http://schema.org/DesktopWebPlatform",
        "http://schema.org/MobileWebPlatform",
        "http://schema.org/AndroidPlatform",
        "http://schema.org/AndroidTVPlatform",
        "http://schema.org/IOSPlatform",
        "http://schema.googleapis.com/GoogleVideoCast"
      ]
    },
    "actionAccessibilityRequirement": {
      "@type": "ActionAccessSpecification",
      "category": "subscription",
      "availabilityStarts": "2018-07-21T10:35:29Z",
      "availabilityEnds": "2019-10-21T10:35:29Z",
      "requiresSubscription": {
          "@type": "MediaSubscription",
          "name": "Example Package",
          "commonTier": true,
          "@id": "https://example.com/package/example"
      },
      "eligibleRegion": [
        {
          "@type": "Country",
          "name": "US"
        },
        {
          "@type": "Country",
          "name": "CA"
        }
      ]
    }
  },
  "sameAs": "https://en.wikipedia.org/wiki/my_favorite_movie",
  "releasedEvent": {
    "@type": "PublicationEvent",
    "startDate": "2008-01-20",
    "location": {
      "@type": "Country",
      "name": "US"
    }
  },
  "popularityScore": {
    "@type": "PopularityScoreSpecification",
    "value": 78,
    "eligibleRegion": [
      {
        "@type": "Country",
        "name": "US"
      },
      {
        "@type": "Country",
        "name": "CA"
      }
    ]
  },
  "description": "This is my favorite movie.",
  "actor": [
    {
      "@type": "Person",
      "name": "John Doe",
      "sameAs": "https://en.wikipedia.org/wiki/John_Doe"
    },
    {
      "@type": "Person",
      "name": "Jane Doe",
      "sameAs": "https://en.wikipedia.org/wiki/Jane_Doe"
    }
  ],
  "identifier": [
    {
      "@type": "PropertyValue",
      "propertyID": "IMDB_ID",
      "value":  "tt0123456"
    }
  ]
}

已刪除情境規格表格

屬性 預期類型 說明
@context 文字 必要 - 一律設為 ["http://schema.org", {"@language": "xx"}]
  • xx 代表動態饋給中字串的語言。每個根實體內容都應將其 @language 設為適當的 BCP 47 格式語言代碼。舉例來說,如果將語言設為西班牙文,即使字幕/配音語言是英文,系統仍會假設 namedescription 的值為西班牙文。
@type 文字 必要 - 一律設為 DeletedScene
@id 網址 必要 - 剪輯的 ID,以 URI 格式表示;例如 https://example.com/1234abc
@id 必須符合下列規定:
  • 這個名稱在所有目錄中是獨一無二的。
  • 完全是靜態的。這個 ID 必須固定,且不會隨時間改變。
  • 格式為統一資源識別碼 (URI)。
  • 用於 @id 值的網域必須由貴機構所擁有。
name 文字 必要 - 已刪除場景的名稱。
description 文字 必填 - 已刪除場景的說明 (上限為 300 個字元)。
potentialAction WatchAction 必要 - 提供動作詳細資料動作標記物件
mainEntity.@type 文字 必要 - 使用 mainEntity 屬性代表這個已刪除的場景所屬的實體。

這個屬性可採用下列值:
mainEntity 屬性也必須是動態饋給中的頂層實體。如本說明文件所述,請根據相應的規格表,為相應類型加入所有必要的中繼資料。這些 mainEntity 類型可以選擇加入深層連結,如透過 potentialAction 屬性傳送。
mainEntity.@id 網址 必要 - 對應實體的 @id。實體必須存在於動態饋給中,且 @idDeletedScene @id 不同。

DeletedScene 範例

下例顯示左側分頁上 DeletedScene 片段的標記 且已在右側分頁中連結 mainEntity此範例包含深層連結。

DeletedScene

以下剪輯片段代表電影中的已刪除場景。這部電影是 由 mainEntity 屬性的 @type@id 指定。

{
  "@context": ["http://schema.org", {"@language": "en"}],
  "@type": "DeletedScene"
  "@id": "https://www.example.com/deleted_scene_abc",
  "name": "Deleted Sscenes in ABC"
  "description": "Deleted Sscenes in ABC."
  "potentialAction": {
      "@type": "WatchAction",
      "target": {
        "@type": "EntryPoint",
        "urlTemplate": "https://www.example.com/deleted_scene_abc",
        "inLanguage": "en",
        "actionPlatform": [
          "http://schema.org/DesktopWebPlatform",
          "http://schema.org/MobileWebPlatform",
          "http://schema.org/AndroidPlatform",
          "http://schema.org/IOSPlatform",
          "http://schema.googleapis.com/GoogleVideoCast"
        ]
      },
      "actionAccessibilityRequirement": {
        "@type": "ActionAccessSpecification",
        "category": "subscription",
        "availabilityStarts": "2019-09-09T10:00:00Z",
        "availabilityEnds": "2019-09-31T10:00:00Z",
        "requiresSubscription": {
          "@type": "MediaSubscription",
          "@id": "http://www.example.com/premium_subscription",
          "name": "Example Premium",
          "sameAs": "http://www.example.com/premium_subscription"
        },
        "eligibleRegion": [
          {
            "@type": "Country",
            "name": "US"
          },
          {
            "@type": "Country",
            "name": "CA"
          }
        ]
      }
    }
  "mainEntity": {
    "@type": "Movie",
    "@id": "https://www.example.com/movie/abc"
  }
}

電影

下列程式碼 mainEntityDeletedScene 片段。這個實體的深層連結 potentialAction 屬性。

{
  "@context": ["http://schema.org", {"@language": "en"}],
  "@type": "Movie",
  "@id": "https://www.example.com/movie/abc",
  "url": "https://www.example.com/movie/abc",
  "name": "My Favorite Movie",
  "potentialAction": {
    "@type": "WatchAction",
    "target": {
      "@type": "EntryPoint",
      "urlTemplate": "http://www.example.com/my_favorite_movie?autoplay=true",
      "inLanguage": "en",
      "actionPlatform": [
        "http://schema.org/DesktopWebPlatform",
        "http://schema.org/MobileWebPlatform",
        "http://schema.org/AndroidPlatform",
        "http://schema.org/AndroidTVPlatform",
        "http://schema.org/IOSPlatform",
        "http://schema.googleapis.com/GoogleVideoCast"
      ]
    },
    "actionAccessibilityRequirement": {
      "@type": "ActionAccessSpecification",
      "category": "subscription",
      "availabilityStarts": "2018-07-21T10:35:29Z",
      "availabilityEnds": "2019-10-21T10:35:29Z",
      "requiresSubscription": {
          "@type": "MediaSubscription",
          "name": "Example Package",
          "commonTier": true,
          "@id": "https://example.com/package/example"
      },
      "eligibleRegion": [
        {
          "@type": "Country",
          "name": "US"
        },
        {
          "@type": "Country",
          "name": "CA"
        }
      ]
    }
  },
  "sameAs": "https://en.wikipedia.org/wiki/my_favorite_movie",
  "releasedEvent": {
    "@type": "PublicationEvent",
    "startDate": "2008-01-20",
    "location": {
      "@type": "Country",
      "name": "US"
    }
  },
  "popularityScore": {
    "@type": "PopularityScoreSpecification",
    "value": 78,
    "eligibleRegion": [
      {
        "@type": "Country",
        "name": "US"
      },
      {
        "@type": "Country",
        "name": "CA"
      }
    ]
  },
  "description": "This is my favorite movie.",
  "actor": [
    {
      "@type": "Person",
      "name": "John Doe",
      "sameAs": "https://en.wikipedia.org/wiki/John_Doe"
    },
    {
      "@type": "Person",
      "name": "Jane Doe",
      "sameAs": "https://en.wikipedia.org/wiki/Jane_Doe"
    }
  ],
  "identifier": [
    {
      "@type": "PropertyValue",
      "propertyID": "IMDB_ID",
      "value":  "tt0123456"
    }
  ]
}

面試規格表

屬性 預期類型 說明
@context 文字 必要 - 一律設為 ["http://schema.org", {"@language": "xx"}]
  • xx 代表動態饋給中字串的語言。每個根實體內容都應將其 @language 設為適當的 BCP 47 格式語言代碼。舉例來說,如果將語言設為西班牙文,即使字幕/配音語言是英文,系統仍會假設 namedescription 的值為西班牙文。
@type 文字 必要 - 一律設為 Interview
@id 網址 必填 - 面試的 ID,格式為 URI;例如 https://example.com/1234abc
@id 必須符合下列規定:
  • 這個名稱在所有目錄中是獨一無二的。
  • 完全是靜態的。這個 ID 必須固定,且不會隨時間改變。
  • 格式為統一資源識別碼 (URI)。
  • 用於 @id 值的網域必須由貴機構所擁有。
name 文字 必要 - 面試片段的名稱。
description 文字 必填 - 訪談的說明,上限為 300 個字元。
potentialAction WatchAction 必要 - 提供動作詳細資料動作標記物件
mainEntity.@type 文字 必要 - 使用 mainEntity 屬性代表這場面試所屬的實體。

這個屬性可具有下列值:
mainEntity 屬性也必須是動態饋給中的頂層實體。如本說明文件所述,請根據相應的規格表,為相應類型加入所有必要的中繼資料。這些 mainEntity 類型可以選擇加入深層連結,如透過 potentialAction 屬性傳送。
mainEntity.@id 網址 必要 - 對應實體的 @id。實體必須存在於動態饋給中,且 @idInterview @id 不同。
interviewer.@type 文字 必要 - 一律設為 Person
interviewer.@id 網址 必要 - 面試者的 ID,格式為 URI;例如 https://example.com/person/1234abc
@id 必須符合下列規定:
  • 這個名稱在所有目錄中是獨一無二的。
  • 完全是靜態的。這個 ID 必須固定,且不會隨時間改變。
  • 格式為統一資源識別碼 (URI)。
  • 用於 @id 值的網域必須由貴機構所擁有。
interviewer.name 文字 必要 - 採訪者的姓名。
interviewee.@type 文字 必要 - 一律設為 Person
interviewee.@id 網址 必要 - 受訪者的 ID,以 URI 格式表示。例如 https://example.com/person/1234abc
@id 必須符合下列規定:
  • 這個名稱在所有目錄中是獨一無二的。
  • 完全是靜態的。這個 ID 必須固定,且不會隨時間改變。
  • 格式為統一資源識別碼 (URI)。
  • 用於 @id 值的網域必須由貴機構所擁有。
interviewee.name 文字 必填 - 受訪者的姓名。

面試範例

下例顯示左側分頁上 Interview 片段的標記 且已在右側分頁中連結 mainEntity此範例包含深層連結。

訪談

以下剪輯片段代表某部電影的訪談。這部電影是 由 mainEntity 屬性的 @type@id 指定。

{
  "@context": ["http://schema.org", {"@language": "en"}],
  "@type": "Interview"
  "@id": "https://www.example.com/abc_personb_interview",
  "name": "ABC Promotional Interview"
  "description": "ABC promotional interview ofwith Person B with host Person A."
  "potentialAction": {
      "@type": "WatchAction",
      "target": {
        "@type": "EntryPoint",
        "urlTemplate": "https://www.example.com/abc_personb_interview",
        "inLanguage": "en",
        "actionPlatform": [
          "http://schema.org/DesktopWebPlatform",
          "http://schema.org/MobileWebPlatform",
          "http://schema.org/AndroidPlatform",
          "http://schema.org/IOSPlatform",
          "http://schema.googleapis.com/GoogleVideoCast"
        ]
      },
      "actionAccessibilityRequirement": {
        "@type": "ActionAccessSpecification",
        "category": "subscription",
        "availabilityStarts": "2019-09-09T10:00:00Z",
        "availabilityEnds": "2019-09-31T10:00:00Z",
        "requiresSubscription": {
          "@type": "MediaSubscription",
          "@id": "http://www.example.com/premium_subscription",
          "name": "Example Premium",
          "sameAs": "http://www.example.com/premium_subscription"
        },
        "eligibleRegion": [
          {
            "@type": "Country",
            "name": "US"
          },
          {
            "@type": "Country",
            "name": "CA"
          }
        ]
      }
    }
  "mainEntity": {
    "@type": "Movie",
    "@id": "https://www.example.com/movie/abc"
  }
  "interviewer": {
    "@type": "Person"
    "@id": "https://example.com/person/1234abc"
    "name": "Person A"
  }
  "interviewee": {
    "@type": "Person"
    "@id": "https://example.com/person/45664abc"
    "name" : "Person B"
  }
}

電影

下列程式碼 mainEntityInterview 片段。這個實體的potentialAction包含深層連結 資源。

{
  "@context": ["http://schema.org", {"@language": "en"}],
  "@type": "Movie",
  "@id": "https://www.example.com/movie/abc",
  "url": "https://www.example.com/movie/abc",
  "name": "My Favorite Movie",
  "potentialAction": {
    "@type": "WatchAction",
    "target": {
      "@type": "EntryPoint",
      "urlTemplate": "http://www.example.com/my_favorite_movie?autoplay=true",
      "inLanguage": "en",
      "actionPlatform": [
        "http://schema.org/DesktopWebPlatform",
        "http://schema.org/MobileWebPlatform",
        "http://schema.org/AndroidPlatform",
        "http://schema.org/AndroidTVPlatform",
        "http://schema.org/IOSPlatform",
        "http://schema.googleapis.com/GoogleVideoCast"
      ]
    },
    "actionAccessibilityRequirement": {
      "@type": "ActionAccessSpecification",
      "category": "subscription",
      "availabilityStarts": "2018-07-21T10:35:29Z",
      "availabilityEnds": "2019-10-21T10:35:29Z",
      "requiresSubscription": {
          "@type": "MediaSubscription",
          "name": "Example Package",
          "commonTier": true,
          "@id": "https://example.com/package/example"
      },
      "eligibleRegion": [
        {
          "@type": "Country",
          "name": "US"
        },
        {
          "@type": "Country",
          "name": "CA"
        }
      ]
    }
  },
  "sameAs": "https://en.wikipedia.org/wiki/my_favorite_movie",
  "releasedEvent": {
    "@type": "PublicationEvent",
    "startDate": "2008-01-20",
    "location": {
      "@type": "Country",
      "name": "US"
    }
  },
  "popularityScore": {
    "@type": "PopularityScoreSpecification",
    "value": 78,
    "eligibleRegion": [
      {
        "@type": "Country",
        "name": "US"
      },
      {
        "@type": "Country",
        "name": "CA"
      }
    ]
  },
  "description": "This is my favorite movie.",
  "actor": [
    {
      "@type": "Person",
      "name": "John Doe",
      "sameAs": "https://en.wikipedia.org/wiki/John_Doe"
    },
    {
      "@type": "Person",
      "name": "Jane Doe",
      "sameAs": "https://en.wikipedia.org/wiki/Jane_Doe"
    }
  ],
  "identifier": [
    {
      "@type": "PropertyValue",
      "propertyID": "IMDB_ID",
      "value":  "tt0123456"
    }
  ]
}