V1.Metadata.Common:ReleasePerformance

Jump to: navigation, search

ReleasePerformance

Contains information about a performance on a classical music release.

Elements

NameTypeDescription
composition PerformanceComposition 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.
rating Integer An editorially assigned rating of the performance from 0 to 10, 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 i:nil="true" />
    <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 i:nil="true" />
</ReleasePerformance>

JSON Response Example

  {
  "ids":{
    "amgClassicalId":null,
    "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":null
  }
 
Personal tools