クリップのコンテンツ マークアップのプロパティ

このセクションでは、 PreviewRecapReviewHighlightBlooperBehindTheSceneDeletedSceneInterview のクリップタイプ。

プレビュー仕様の表

プロパティ タイプ 説明
@context テキスト 必須 - 常に ["http://schema.org", {"@language": "xx"}] に設定します。
  • xx は、フィード内の文字列の言語を表します。各ルート エンティティ コンテキストの @language は、BCP 47 形式の適切な言語コードに設定する必要があります。たとえば、言語がスペイン語に設定されている場合、字幕や吹き替えの言語が英語であっても、namedescription の値はスペイン語であると見なされます。
@type テキスト 必須 - 常に Preview に設定します。
@id URL 必須 - URI 形式のプレビューの識別子。(例: https://example.com/1234abc)。
@id は次の要件を満たしている必要があります。
  • カタログ全体でグローバルに一意である。
  • 静的である。ID は固定されており、時間の経過とともに変化してはなりません。
  • これは Unified Resource Identifier(URI)の形式です。
  • @id 値に使用するドメインは、組織が所有している必要があります。
name テキスト 必須 - プレビュー クリップの名前。
description テキスト 必須 - プレビューの説明。最大 300 文字です。
potentialAction WatchAction 必須 - アクションの詳細を提供するアクション マークアップ オブジェクト
mainEntity.@type テキスト 必須 - mainEntity プロパティを使用して、このプレビューが属するエンティティを表します。

このプロパティには、次のいずれかの値があります。
また、mainEntity プロパティはフィード内の最上位エンティティとして存在する必要があります。このドキュメント全体の仕様表で示されているように、それぞれの型に必要なメタデータをすべて追加します。これらの mainEntity タイプでは、potentialAction プロパティを通じて指定されるとおり、ディープリンクを含めるかどうかは任意です。
mainEntity.@id URL 必須 - 対応するエンティティの @id。このエンティティはフィードに存在し、Preview @id とは異なる @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

以下はmainEntityです Preview のクリップ。このエンティティにはディープリンクが含まれていません。深い専門知識と 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 テキスト 必須 - 常に Recap に設定します。
@id URL 必須 - URI 形式のハイライトの識別子。(例: https://example.com/1234abc)。
@id は次の要件を満たしている必要があります。
  • カタログ全体でグローバルに一意である。
  • 静的である。ID は固定されており、時間の経過とともに変化してはなりません。
  • これは Unified Resource Identifier(URI)の形式です。
  • @id 値に使用するドメインは、組織が所有している必要があります。
name テキスト 必須 - ハイライト クリップの名前。
description テキスト 必須 - ハイライトの説明。最大 300 文字。
potentialAction WatchAction 必須 - アクションの詳細を提供するアクション マークアップ オブジェクト
mainEntity.@type テキスト 必須 - mainEntity プロパティを使用して、このハイライトが属するエンティティを表します。

このプロパティには、次のいずれかの値があります。
また、mainEntity プロパティはフィード内の最上位エンティティとして存在する必要があります。このドキュメント全体の仕様表で示されているように、それぞれの型に必要なメタデータをすべて追加します。これらの mainEntity タイプでは、potentialAction プロパティを通じて指定されるとおり、ディープリンクを含めるかどうかは任意です。
mainEntity.@id URL 必須 - 対応するエンティティの @id。このエンティティはフィードに存在し、Recap @id とは異なる @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

以下はmainEntityです Recap のクリップ。このエンティティにはディープリンクが含まれていません。深い専門知識と 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 URL 必須 - レビューの ID(URI 形式)。(例: https://example.com/1234abc)。
@id は次の要件を満たしている必要があります。
  • カタログ全体でグローバルに一意である。
  • 静的である。ID は固定されており、時間の経過とともに変化してはなりません。
  • これは Unified Resource Identifier(URI)の形式です。
  • @id 値に使用するドメインは、組織が所有している必要があります。
name テキスト 必須 - レビュー クリップの名前。
description テキスト 必須 - レビューの説明。半角 300 文字(全角 150 文字)以内にします。
potentialAction WatchAction 必須 - アクションの詳細を提供するアクション マークアップ オブジェクト
mainEntity.@type テキスト 必須 - mainEntity プロパティを使用して、このレビューが属するエンティティを表します。

このプロパティには、次のいずれかの値があります。
また、mainEntity プロパティはフィード内の最上位エンティティとして存在する必要があります。このドキュメント全体の仕様表で示されているように、それぞれの型に必要なメタデータをすべて追加します。これらの mainEntity タイプでは、potentialAction プロパティを通じて指定されるとおり、ディープリンクを含めるかどうかは任意です。
mainEntity.@id URL 必須 - 対応するエンティティの @id。このエンティティはフィードに存在し、Review @id とは異なる @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"
  }
}

Movie

以下はmainEntityです Review のクリップ。このエンティティの 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 URL 必須 - URI 形式のハイライトの識別子。(例: https://example.com/1234abc)。
@id は次の要件を満たしている必要があります。
  • カタログ全体でグローバルに一意である。
  • 静的である。ID は固定されており、時間の経過とともに変化してはなりません。
  • これは Unified Resource Identifier(URI)の形式です。
  • @id 値に使用するドメインは、組織が所有している必要があります。
name テキスト 必須 - ハイライト クリップの名前。
description テキスト 必須 - ハイライトの説明。半角 300 文字(全角 150 文字)まで。
potentialAction WatchAction 必須 - アクションの詳細を提供するアクション マークアップ オブジェクト
mainEntity.@type テキスト 必須 - mainEntity プロパティを使用して、このハイライトが属するエンティティを表します。

このプロパティには、次のいずれかの値があります。
また、mainEntity プロパティはフィード内の最上位エンティティとして存在する必要があります。このドキュメント全体の仕様表で示されているように、それぞれの型に必要なメタデータをすべて追加します。これらの mainEntity タイプでは、potentialAction プロパティを通じて指定されるとおり、ディープリンクを含めるかどうかは任意です。
mainEntity.@id URL 必須 - 対応するエンティティの @id。このエンティティはフィードに存在し、Highlight @id とは異なる @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

以下はmainEntityです Highlight のクリップ。このエンティティにはディープリンクが含まれていません。深い専門知識と 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 URL 必須 - URI 形式の NG 集の識別子。(例: https://example.com/1234abc)。
@id は次の要件を満たしている必要があります。
  • カタログ全体でグローバルに一意である。
  • 静的である。ID は固定されており、時間の経過とともに変化してはなりません。
  • これは Unified Resource Identifier(URI)の形式です。
  • @id 値に使用するドメインは、組織が所有している必要があります。
name テキスト 必須 - NG 集クリップの名前。
description テキスト 必須 - NG 集の説明(最大 300 文字)。
potentialAction WatchAction 必須 - アクションの詳細を提供するアクション マークアップ オブジェクト
mainEntity.@type テキスト 必須 - mainEntity プロパティを使用して、この Blooper クリップが属するエンティティを表します。

このプロパティには、次のいずれかの値があります。
また、mainEntity プロパティはフィード内の最上位エンティティとして存在する必要があります。このドキュメント全体の仕様表で示されているように、それぞれの型に必要なメタデータをすべて追加します。これらの mainEntity タイプでは、potentialAction プロパティを通じて指定されるとおり、ディープリンクを含めるかどうかは任意です。
mainEntity.@id URL 必須 - 対応するエンティティの @id。このエンティティはフィードに存在し、Blooper @id とは異なる @id が設定されている必要があります。

NG 集の例

次の例は、左側のタブに表示される 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"
  }
}

Movie

以下はmainEntityです Blooper のクリップ。このエンティティの 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 は、フィード内の文字列の言語を表します。各ルート エンティティ コンテキストの @language は、BCP 47 形式の適切な言語コードに設定する必要があります。たとえば、言語がスペイン語に設定されている場合、字幕や吹き替えの言語が英語であっても、namedescription の値はスペイン語であると見なされます。
@type テキスト 必須 - 常に BehindTheScene に設定します。
@id URL 必須 - クリップの識別子(URI 形式)。(例: https://example.com/1234abc)。
@id は次の要件を満たしている必要があります。
  • カタログ全体でグローバルに一意である。
  • 静的である。ID は固定されており、時間の経過とともに変化してはなりません。
  • これは Unified Resource Identifier(URI)の形式です。
  • @id 値に使用するドメインは、組織が所有している必要があります。
name テキスト 必須 - 舞台裏クリップの名前。
description テキスト 必須 - メイキング クリップの説明(最大 300 文字)。
potentialAction WatchAction 必須 - アクションの詳細を提供するアクション マークアップ オブジェクト
mainEntity.@type テキスト 必須 - mainEntity プロパティを使用して、この舞台裏のクリップが属するエンティティを表します。

このプロパティには次の値を設定できます。
また、mainEntity プロパティはフィード内の最上位エンティティとして存在する必要があります。このドキュメント全体の仕様表で示されているように、それぞれの型に必要なメタデータをすべて追加します。これらの mainEntity タイプでは、potentialAction プロパティを通じて指定されるとおり、ディープリンクを含めるかどうかは任意です。
mainEntity.@id URL 必須 - 対応するエンティティの @id。このエンティティはフィードに存在し、BehindTheScene @id とは異なる @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"
  }
}

Movie

以下はmainEntityです BehindTheScene のクリップ。このエンティティの 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 は、フィード内の文字列の言語を表します。各ルート エンティティ コンテキストの @language は、BCP 47 形式の適切な言語コードに設定する必要があります。たとえば、言語がスペイン語に設定されている場合、字幕や吹き替えの言語が英語であっても、namedescription の値はスペイン語であると見なされます。
@type テキスト 必須 - 常に DeletedScene に設定します。
@id URL 必須 - クリップの識別子(URI 形式)。(例: https://example.com/1234abc)。
@id は次の要件を満たしている必要があります。
  • カタログ全体でグローバルに一意である。
  • 静的である。ID は固定されており、時間の経過とともに変化してはなりません。
  • これは Unified Resource Identifier(URI)の形式です。
  • @id 値に使用するドメインは、組織が所有している必要があります。
name テキスト 必須 - 削除されたシーンの名前。
description テキスト 必須 - 削除されるシーンの説明。最大 300 文字です。
potentialAction WatchAction 必須 - アクションの詳細を提供するアクション マークアップ オブジェクト
mainEntity.@type テキスト 必須 - mainEntity プロパティを使用して、この削除されたシーンが属するエンティティを表します。

このプロパティの値は次のとおりです。
また、mainEntity プロパティはフィード内の最上位エンティティとして存在する必要があります。このドキュメント全体の仕様表で示されているように、それぞれの型に必要なメタデータをすべて追加します。これらの mainEntity タイプでは、potentialAction プロパティを通じて指定されるとおり、ディープリンクを含めるかどうかは任意です。
mainEntity.@id URL 必須 - 対応するエンティティの @id。このエンティティはフィードに存在し、DeletedScene @id とは異なる @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"
  }
}

Movie

以下はmainEntityです DeletedScene のクリップ。このエンティティの 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 URL 必須 - URI 形式のインタビューの識別子。(例: https://example.com/1234abc)。
@id は次の要件を満たしている必要があります。
  • カタログ全体でグローバルに一意である。
  • 静的である。ID は固定されており、時間の経過とともに変化してはなりません。
  • これは Unified Resource Identifier(URI)の形式です。
  • @id 値に使用するドメインは、組織が所有している必要があります。
name テキスト 必須 - インタビュー クリップの名前。
description テキスト 必須 - インタビューの説明(最大 300 文字)。
potentialAction WatchAction 必須 - アクションの詳細を提供するアクション マークアップ オブジェクト
mainEntity.@type テキスト 必須 - mainEntity プロパティを使用して、このインタビューが属するエンティティを表します。

このプロパティには、次の値を設定できます。
また、mainEntity プロパティはフィード内の最上位エンティティとして存在する必要があります。このドキュメント全体の仕様表で示されているように、それぞれの型に必要なメタデータをすべて追加します。これらの mainEntity タイプでは、potentialAction プロパティを通じて指定されるとおり、ディープリンクを含めるかどうかは任意です。
mainEntity.@id URL 必須 - 対応するエンティティの @id。このエンティティはフィードに存在し、Interview @id とは異なる @id が設定されている必要があります。
interviewer.@type テキスト 必須 - 常に Person に設定します。
interviewer.@id URL 必須 - URI 形式の面接担当者の識別子。(例: https://example.com/person/1234abc)。
@id は次の要件を満たしている必要があります。
  • カタログ全体でグローバルに一意である。
  • 静的である。ID は固定されており、時間の経過とともに変化してはなりません。
  • これは Unified Resource Identifier(URI)の形式です。
  • @id 値に使用するドメインは、組織が所有している必要があります。
interviewer.name テキスト 必須 - 面接担当者の名前。
interviewee.@type テキスト 必須 - 常に Person に設定します。
interviewee.@id URL 必須 - URI 形式のインタビュー対象者の識別子。(例: https://example.com/person/1234abc)。
@id は次の要件を満たしている必要があります。
  • カタログ全体でグローバルに一意である。
  • 静的である。ID は固定されており、時間の経過とともに変化してはなりません。
  • これは Unified Resource Identifier(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"
  }
}

Movie

以下はmainEntityです Interview のクリップ。このエンティティの 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"
    }
  ]
}