V1.Metadata.Common: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 All of the IDs for the movie or program that are, or will be, recognized by the Video Service:
  • iguideId
  • cosmoId
  • amgMovieId
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.
title String Title of the movie or program.
type String Type of award.
year Int 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/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/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\/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\/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