V1.Metadata.Common:MovieRelease

Jump to: navigation, search

MovieRelease

Contains information about a DVD, Blu-ray, or other release of a movie.

Elements

NameTypeDescription
formats String [ ] Formats the movie is available in.
hasCommentary Boolean Whether a commentary about the movie is available: true or false.
ids ids IDs for the release of the movie that are recognized by the API. The Movie Service recognizes only releaseId, which is an All Media Guide (AMG) movie database ID for movie releases.
isPurchasable Boolean Whether the movie release can be purchased: true or false.
rating Integer An editorially assigned rating of the movie release from 0 to 10, where 0 is no rating and higher numbers indicate a higher rating.
studio String The company that filmed the movie.
title String Full title of the movie release.
year String Year of the release of the movie.

XML Response Example

<MovieRelease>
  <ids>
    <releaseId>E105134</releaseId>
    <upcId i:nil="true" />
  </ids>
  <title>Being John Malkovich</title>
  <studio>Columbia Tristar</studio>
  <rating>9</rating>
  <formats xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <a:string>DVD</a:string>
  </formats>
  <year>2000 09 18</year>
  <hasCommentary>true</hasCommentary>
  <isPurchasable>true</isPurchasable>
</MovieRelease>

JSON Response Example

{
   "ids":{
      "releaseId":"E105134",
      "upcId":null
   },
   "title":"Being John Malkovich",
   "studio":"Columbia Tristar",
   "rating":9,
   "formats":[
      "DVD"
   ],
   "year":"2000 09 18",
   "hasCommentary":true,
   "isPurchasable":true
}
 
Personal tools