Common/music/v1.1/ReleasePerformance

Jump to: navigation, search

ReleasePerformance

Contains information about a performance on a classical music release.

Elements

NameTypeDescription
composition composition Information about the compositions performed in a classical music performance.
duration integer Length of the performance in seconds.
ids ids All of the IDs that are recognized by the API for a performance. The possible IDs are:
  • performanceId
  • amgClassicalId
isPick Boolean Whether the performance is recommended by Rovi: true or false.
performers AlbumArtist [ ] List of the soloists, conductors, orchestras, and other performers, sorted alphabetically by name (last name or orchestra name).
rating integer An editorially assigned rating of the performance from 0 to 9, where 0 is no rating and higher numbers indicate a higher rating.
recordingDate string Date of the performance in YYYY-MM-DD format.
recordingPlace string Location of the performance.
soundRating integer An editorially assigned rating of the sound quality from 0 to 10, where 0 is no rating and higher numbers indicate a higher rating.

XML Response Example

<ReleasePerformance>
  <ids>
    <amgClassicalId>C 231141</amgClassicalId>
    <performanceId>MQ0000089674</performanceId>
  </ids>
  <performers>
    <AlbumArtist>
      <id>MN0000775212</id>
      <name>Kronos Quartet</name>
    </AlbumArtist>
  </performers>
  <rating>0</rating>
  <soundRating>0</soundRating>
  <isPick>false</isPick>
  <recordingDate>1996-01-??</recordingDate>
  <recordingPlace>Skywalker Sound, Nicasio, CA</recordingPlace>
  <duration>2144</duration>
  <composition>
    <id>MC0002409435</id>
    <amgClassicalId>C 231141</amgClassicalId>
    <title>Ghost Opera, for string quartet &amp; pipa, with stone, water, paper, and metal</title>
    <composers>
      <CompositionComposer>
        <id>MN0000313685</id>
        <name>Tan Dun</name>
      </CompositionComposer>
    </composers>
  </composition>
</ReleasePerformance>

JSON Response Example

{
   "ids":{
      "amgClassicalId":"C 231141",
      "performanceId":"MQ0000089674"
   },
   "performers":[
      {
         "id":"MN0000775212",
         "name":"Kronos Quartet"
      }
   ],
   "rating":0,
   "soundRating":0,
   "isPick":false,
   "recordingDate":"1996-01-??",
   "recordingPlace":"Skywalker Sound, Nicasio, CA",
   "duration":2144,
   "composition":{
      "id":"MC0002409435",
      "amgClassicalId":"C 231141",
      "title":"Ghost Opera, for string quartet & pipa, with stone, water, paper, and metal",
      "composers":[
         {
            "id":"MN0000313685",
            "name":"Tan Dun"
         }
      ]
   }
}
 
Personal tools