剪辑的内容标记属性

本部分详细介绍了 PreviewRecapReviewHighlightBlooperBehindTheSceneDeletedSceneInterview 剪辑类型的内容标记属性。

预览规范表

属性 预期类型 说明
@context 文本 必需 - 始终设置为 ["http://schema.org", {"@language": "xx"}]
  • xx 表示 Feed 中字符串的语言。每个根实体上下文的 @language 都应设置为适当的 BCP 47 格式语言代码。例如,如果语言设置为西班牙语,则系统会假定 namedescription 的值为西班牙语,即使字幕/配音语言为英语也是如此。
@type 文本 必需 - 始终设置为 Preview
@id 网址 必填 - 预览的标识符(采用 URI 格式);例如,https://example.com/1234abc
@id 必须满足以下要求:
  • 在您的目录中,此 ID 应是全局唯一的。
  • 它是静态的。该 ID 必须保持稳定,不应随着时间的推移而发生变化。
  • 其格式为统一资源标识符 (URI)。
  • 用于 @id 值的网域必须归您的组织所有。
name 文本 必填 - 预览剪辑的名称。
description 文本 必填 - 预览的说明,不得超过 300 个字符。
potentialAction WatchAction 必需 - 一个操作标记对象,用于提供操作的详细信息
mainEntity.@type 文本 必需 - 使用 mainEntity 属性表示此预览所属的实体。

此属性可以具有以下值:
mainEntity 属性还必须作为顶级实体存在于 Feed 中。为其各个类型添加所有必要的元数据,如本文档中各个规范表所示。这些 mainEntity 类型可以选择包含深层链接,具体取决于 potentialAction 属性。
mainEntity.@id 网址 必需 - 相应实体的 @id。实体必须存在于 Feed 中,并且其 @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

以下是与 Preview 剪辑中指定的剪辑关联的 mainEntity。此实体不包含深层链接。如果您有深层链接,可以使用 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 表示 Feed 中字符串的语言。每个根实体上下文的 @language 都应设置为适当的 BCP 47 格式语言代码。例如,如果语言设置为西班牙语,则系统会假定 namedescription 的值为西班牙语,即使字幕/配音语言为英语也是如此。
@type 文本 必需 - 始终设置为 Recap
@id 网址 必填 - 数据总结的标识符,采用 URI 格式;例如 https://example.com/1234abc
@id 必须满足以下要求:
  • 在您的目录中,此 ID 应是全局唯一的。
  • 它是静态的。该 ID 必须保持稳定,不应随着时间的推移而发生变化。
  • 其格式为统一资源标识符 (URI)。
  • 用于 @id 值的网域必须归您的组织所有。
name 文本 必填 - 数据总结剪辑的名称。
description 文本 必填 - 对数据总结的说明,长度不得超过 300 个字符。
potentialAction WatchAction 必需 - 一个操作标记对象,用于提供操作的详细信息
mainEntity.@type 文本 必需 - 使用 mainEntity 属性表示此数据总结所属的实体。

此属性可以具有以下值:
mainEntity 属性还必须作为顶级实体存在于 Feed 中。为其各个类型添加所有必要的元数据,如本文档中各个规范表所示。这些 mainEntity 类型可以选择包含深层链接,具体取决于 potentialAction 属性。
mainEntity.@id 网址 必需 - 相应实体的 @id。实体必须存在于 Feed 中,并且其 @idRecap @id 不同。

数据总结示例

以下示例展示了左侧标签页中 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

以下是与 Recap 剪辑中指定的剪辑关联的 mainEntity。此实体不包含深层链接。如果您有深层链接,可以使用 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 表示 Feed 中字符串的语言。每个根实体上下文的 @language 都应设置为适当的 BCP 47 格式语言代码。例如,如果语言设置为西班牙语,则系统会假定 namedescription 的值为西班牙语,即使字幕/配音语言为英语也是如此。
@type 文本 必需 - 始终设置为 Review
@id 网址 必填 - 评价的标识符,采用 URI 格式;例如 https://example.com/1234abc
@id 必须满足以下要求:
  • 在您的目录中,此 ID 应是全局唯一的。
  • 它是静态的。该 ID 必须保持稳定,不应随着时间的推移而发生变化。
  • 其格式为统一资源标识符 (URI)。
  • 用于 @id 值的网域必须归您的组织所有。
name 文本 必填 - 评价剪辑的名称。
description 文本 必填 - 评价说明,最多可包含 300 个字符。
potentialAction WatchAction 必需 - 一个操作标记对象,用于提供操作的详细信息
mainEntity.@type 文本 必需 - 使用 mainEntity 属性表示此评价所属的实体。

此属性可以具有以下值:
mainEntity 属性还必须作为顶级实体存在于 Feed 中。为其各个类型添加所有必要的元数据,如本文档中各个规范表所示。这些 mainEntity 类型可以选择包含深层链接,具体取决于 potentialAction 属性。
mainEntity.@id 网址 必需 - 相应实体的 @id。实体必须存在于 Feed 中,并且其 @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"
  }
}

电影

以下是与 Review 剪辑中指定的剪辑关联的 mainEntity。此实体在其 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 表示 Feed 中字符串的语言。每个根实体上下文的 @language 都应设置为适当的 BCP 47 格式语言代码。例如,如果语言设置为西班牙语,则系统会假定 namedescription 的值为西班牙语,即使字幕/配音语言为英语也是如此。
@type 文本 必需 - 始终设置为 Highlight
@id 网址 必需 - 采用 URI 格式的精彩集锦标识符;例如 https://example.com/1234abc
@id 必须满足以下要求:
  • 在您的目录中,此 ID 应是全局唯一的。
  • 它是静态的。该 ID 必须保持稳定,不应随着时间的推移而发生变化。
  • 其格式为统一资源标识符 (URI)。
  • 用于 @id 值的网域必须归您的组织所有。
name 文本 必需 - 精彩集锦剪辑的名称。
description 文本 必填 - 精彩集锦的说明,长度不得超过 300 个字符。
potentialAction WatchAction 必需 - Action 标记对象,用于提供操作的详细信息
mainEntity.@type 文本 必需 - 使用 mainEntity 属性表示此亮点所属的实体。

此属性可以具有以下值:
mainEntity 属性还必须作为顶级实体存在于 Feed 中。为其各个类型添加所有必要的元数据,如本文档中各个规范表所示。这些 mainEntity 类型可以选择包含深层链接,具体取决于 potentialAction 属性。
mainEntity.@id 网址 必需 - 相应实体的 @id。实体必须存在于 Feed 中,并且其 @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

以下是与 Highlight 剪辑中指定的剪辑关联的 mainEntity。此实体不包含深层链接。如果您有深层链接,可以使用 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 表示 Feed 中字符串的语言。每个根实体上下文的 @language 都应设置为适当的 BCP 47 格式语言代码。例如,如果语言设置为西班牙语,则系统会假定 namedescription 的值为西班牙语,即使字幕/配音语言为英语也是如此。
@type 文本 必需 - 始终设置为 Blooper
@id 网址 必需 - 以 URI 格式表示的错误集的标识符;例如 https://example.com/1234abc
@id 必须满足以下要求:
  • 在您的目录中,此 ID 应是全局唯一的。
  • 它是静态的。该 ID 必须保持稳定,不应随着时间的推移而发生变化。
  • 其格式为统一资源标识符 (URI)。
  • 用于 @id 值的网域必须归您的组织所有。
name 文本 必填 - 笑料剪辑的名称。
description 文本 必填 - 对此失误镜头的说明,长度不得超过 300 个字符。
potentialAction WatchAction 必需 - 一个操作标记对象,用于提供操作的详细信息
mainEntity.@type 文本 必填 - 使用 mainEntity 属性表示此失误剪辑所属的实体。

此属性可以具有以下值:
mainEntity 属性还必须作为顶级实体存在于 Feed 中。为其各个类型添加所有必要的元数据,如本文档中各个规范表所示。这些 mainEntity 类型可以选择包含深层链接,具体取决于 potentialAction 属性。
mainEntity.@id 网址 必需 - 相应实体的 @id。实体必须存在于 Feed 中,并且其 @idBlooper @id 不同。

笑料片段示例

以下示例显示了左侧标签页中 Blooper 剪辑的标记,以及右侧标签页中与其关联的 mainEntity。此示例包含深层链接。

搞笑镜头

以下剪辑展示了电影中的失误片段。电影由 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"
  }
}

电影

以下是与 Blooper 剪辑中指定的剪辑关联的 mainEntity。此实体在其 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"
    }
  ]
}

BehindTheScene 规范表

属性 预期类型 说明
@context 文本 必需 - 始终设置为 ["http://schema.org", {"@language": "xx"}]
  • xx 表示 Feed 中字符串的语言。每个根实体上下文的 @language 都应设置为适当的 BCP 47 格式语言代码。例如,如果语言设置为西班牙语,则系统会假定 namedescription 的值为西班牙语,即使字幕/配音语言为英语也是如此。
@type 文本 必需 - 始终设置为 BehindTheScene
@id 网址 必填 - 剪辑的标识符,采用 URI 格式;例如 https://example.com/1234abc
@id 必须满足以下要求:
  • 在您的目录中,此 ID 应是全局唯一的。
  • 它是静态的。该 ID 必须保持稳定,不应随着时间的推移而发生变化。
  • 其格式为统一资源标识符 (URI)。
  • 用于 @id 值的网域必须归您的组织所有。
name 文本 必填 - 幕后花絮剪辑的名称。
description 文本 必填 - 幕后花絮剪辑的说明,不得超过 300 个字符。
potentialAction WatchAction 必需 - 一个操作标记对象,用于提供操作的详细信息
mainEntity.@type 文本 必填 - 使用 mainEntity 属性表示此幕后花絮剪辑所属的实体。

此属性可以具有以下值:
mainEntity 属性还必须作为顶级实体存在于 Feed 中。为其各个类型添加所有必要的元数据,如本文档中各个规范表所示。这些 mainEntity 类型可以选择包含深层链接,具体取决于 potentialAction 属性。
mainEntity.@id 网址 必需 - 相应实体的 @id。实体必须存在于 Feed 中,并且其 @idBehindTheScene @id 不同。

BehindTheScene 示例

以下示例显示了左侧标签页中的 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"
  }
}

电影

以下是与 BehindTheScene 剪辑中指定的剪辑关联的 mainEntity。此实体在其 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"
    }
  ]
}

DeletedScene 规范表

属性 预期类型 说明
@context 文本 必需 - 始终设置为 ["http://schema.org", {"@language": "xx"}]
  • xx 表示 Feed 中字符串的语言。每个根实体上下文的 @language 都应设置为适当的 BCP 47 格式语言代码。例如,如果语言设置为西班牙语,则系统会假定 namedescription 的值为西班牙语,即使字幕/配音语言为英语也是如此。
@type 文本 必需 - 始终设置为 DeletedScene
@id 网址 必填 - 剪辑的标识符,采用 URI 格式;例如 https://example.com/1234abc
@id 必须满足以下要求:
  • 在您的目录中,此 ID 应是全局唯一的。
  • 它是静态的。该 ID 必须保持稳定,不应随着时间的推移而发生变化。
  • 其格式为统一资源标识符 (URI)。
  • 用于 @id 值的网域必须归您的组织所有。
name 文本 必填 - 已删除场景的名称。
description 文本 必填 - 删除的场景的说明,长度不得超过 300 个字符。
potentialAction WatchAction 必需 - 一个操作标记对象,用于提供操作的详细信息
mainEntity.@type 文本 必需 - 使用 mainEntity 属性表示此已删除场景所属的实体。

此属性可以具有以下值:
mainEntity 属性还必须作为顶级实体存在于 Feed 中。为其各个类型添加所有必要的元数据,如本文档中各个规范表所示。这些 mainEntity 类型可以选择包含深层链接,具体取决于 potentialAction 属性。
mainEntity.@id 网址 必需 - 相应实体的 @id。相应实体必须存在于 Feed 中,并且其 @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"
  }
}

电影

以下是与 DeletedScene 剪辑中指定的剪辑关联的 mainEntity。此实体在其 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 表示 Feed 中字符串的语言。每个根实体上下文的 @language 都应设置为适当的 BCP 47 格式语言代码。例如,如果语言设置为西班牙语,则系统会假定 namedescription 的值为西班牙语,即使字幕/配音语言为英语也是如此。
@type 文本 必需 - 始终设置为 Interview
@id 网址 必需 - 采用 URI 格式的访谈标识符;例如,https://example.com/1234abc
@id 必须满足以下要求:
  • 在您的目录中,此 ID 应是全局唯一的。
  • 它是静态的。该 ID 必须保持稳定,不应随着时间的推移而发生变化。
  • 其格式为统一资源标识符 (URI)。
  • 用于 @id 值的网域必须归您的组织所有。
name 文本 必填 - 访谈片段的名称。
description 文本 必填 - 对话的说明,不得超过 300 个字符。
potentialAction WatchAction 必需 - 一个操作标记对象,用于提供操作的详细信息
mainEntity.@type 文本 必需 - 使用 mainEntity 属性表示此访谈所属的实体。

此属性可以具有以下值:
mainEntity 属性还必须作为顶级实体存在于 Feed 中。为其各个类型添加所有必要的元数据,如本文档中各个规范表所示。这些 mainEntity 类型可以选择包含深层链接,具体取决于 potentialAction 属性。
mainEntity.@id 网址 必需 - 相应实体的 @id。实体必须存在于 Feed 中,并且其 @idInterview @id 不同。
interviewer.@type 文本 必需 - 始终设置为 Person
interviewer.@id 网址 必填 - 面试官的标识符,采用 URI 格式;例如 https://example.com/person/1234abc
@id 必须符合以下要求:
  • 在您的目录中,此 ID 应是全局唯一的。
  • 它是静态的。该 ID 必须保持稳定,不应随着时间的推移而发生变化。
  • 其格式为统一资源标识符 (URI)。
  • 用于 @id 值的网域必须归您的组织所有。
interviewer.name 文本 必填 - 面试官的姓名。
interviewee.@type 文本 必需 - 始终设置为 Person
interviewee.@id 网址 必填 - 受访者的标识符(采用 URI 格式);例如,https://example.com/person/1234abc
@id 必须符合以下要求:
  • 在您的目录中,此 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"
  }
}

电影

以下是与 Interview 剪辑中指定的剪辑关联的 mainEntity。此实体在其 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"
    }
  ]
}