Common/video/v1.1/VideoAward

Jump to: navigation, search

VideoAward

Contains information about an award or award nomination for a movie or television program.

Elements

NameTypeDescription
category string Category of work the award applies to.
ids ids IDs for the movie or program that are recognized by Rovi DVDs or Rovi Video.
isWinner Boolean Whether the movie or program won the award: true or false.
medium string Medium the movie or program was distributed in.
recipients VideoAwardRecipient [ ] People whose contribution are recognized by the award, sorted in order of cosmo ID.
title string Title of the movie or program.
type string Type of award.
year integer Year of the award.

XML Response Example

<VideoAward>
  <recipients>
    <VideoAwardRecipient>
      <ids>
        <amgClassicalId i:nil="true"/>
        <amgMovieId i:nil="true"/>
        <amgPopId i:nil="true"/>
        <cosmoId>620050</cosmoId>
        <nameId i:nil="true"/>
      </ids>
      <fullName>Ken Keeler</fullName>
      <nameUri>http://api.rovicorp.com/v1.1/name/info?format=xml&amp;apikey=4p1k3y&amp;cosmoid=620050</nameUri>
      <isCelebrity>false</isCelebrity>
      <isOrganization>false</isOrganization>
    </VideoAwardRecipient>
    <VideoAwardRecipient>
      <ids>
        <amgClassicalId i:nil="true"/>
        <amgMovieId i:nil="true"/>
        <amgPopId i:nil="true"/>
        <cosmoId>729197</cosmoId>
        <nameId i:nil="true"/>
      </ids>
      <fullName>Alf H. Clausen</fullName>
      <nameUri>http://api.rovicorp.com/v1.1/name/info?format=xml&amp;apikey=4p1k3y&amp;cosmoid=729197</nameUri>
      <isCelebrity>false</isCelebrity>
      <isOrganization>false</isOrganization>
    </VideoAwardRecipient>
  </recipients>
  <ids>
    <amgMovieId i:nil="true"/>
    <cosmoId>7903</cosmoId>
  </ids>
  <title>The Simpsons</title>
  <type>Emmy</type>
  <medium>TV</medium>
  <category>Outstanding Music and Lyrics</category>
  <year>1998</year>
  <isWinner>true</isWinner>
</VideoAward>

JSON Response Example

{
   "recipients":[
      {
         "ids":{
            "amgClassicalId":null,
            "amgMovieId":null,
            "amgPopId":null,
            "cosmoId":"620050",
            "nameId":null
         },
         "fullName":"Ken Keeler",
         "nameUri":"http:\/\/api.rovicorp.com\/v1.1\/name\/info?format=json&apikey=4p1k3y&cosmoid=620050",
         "isCelebrity":false,
         "isOrganization":false
      },
      {
         "ids":{
            "amgClassicalId":null,
            "amgMovieId":null,
            "amgPopId":null,
            "cosmoId":"729197",
            "nameId":null
         },
         "fullName":"Alf H. Clausen",
         "nameUri":"http:\/\/api.rovicorp.com\/v1.1\/name\/info?format=json&apikey=4p1k3y&cosmoid=729197",
         "isCelebrity":false,
         "isOrganization":false
      }
   ],
   "ids":{
      "amgMovieId":null,
      "cosmoId":"7903"
   },
   "title":"The Simpsons",
   "type":"Emmy",
   "medium":"TV",
   "category":"Outstanding Music and Lyrics",
   "year":1998,
   "isWinner":true
}
 
Personal tools