core + attic (Attic Area): these terms have been either depricated from the core or extentions, or removed from pending as not accepted into the full vocabulary.

countryOfOrigin

Canonical URL: http://schema.org/countryOfOrigin

Thing > Property > countryOfOrigin

The country of the principal offices of the production company or individual responsible for the movie or program.

Usage: Fewer than 10 domains
Values expected to be one of these types
Country
Used on these types
Movie
TVEpisode
TVSeason
TVSeries


Examples

Example 1
  1. Ghostbusters was produced by Black Rhino in the United States.
  1. <div itemscope itemtype="http://schema.org/Movie">
  2.   <h1 itemprop="name">Ghostbusters</h1>
  3.   <div itemprop="productionCompany" itemscope itemtype="http://schema.org/Organization">
  4.     Produced by: <span itemprop="name">Black Rhino</span><p>
  5.   </div>
  6.   <div itemprop="countryOfOrigin" itemscope itemtype="http://schema.org/Country">
  7.     Country: <span itemprop="name" content="USA">United States</span><p>
  8.   </div>
  9. </div>
  1. <div vocab="http://schema.org/" typeof="Movie">
  2.   <h1 property="name">Ghostbusters</h1>
  3.   <div property="productionCompany" typeof="Organization">
  4.     Produced by: <span property="name">Black Rhino</span><p>
  5.   </div>
  6.   <div property="countryOfOrigin" typeof="Country">
  7.     Country: <span property="name" content="USA">United States</span><p>
  8.   </div>
  9. </div>
  1. <script type="application/ld+json">
  2. {
  3.   "@context": "http://schema.org/",
  4.   "@type": "Movie",
  5.   "name": "Ghostbusters",
  6.   "productionCompany": {
  7.     "@type": "Organization",
  8.     "name": "Black Rhino"
  9.   },
  10.   "countryOfOrigin": {
  11.     "@type": "Country",
  12.     "name": "USA"
  13.   }
  14. }
  15. </script>

Schema Version 3.2