Common/music/v1.1/CompositionRelease

Jump to: navigation, search

CompositionRelease

Contains information about an album that featured a performance of a composition named in the request.

Elements

NameTypeDescription
catalog string Product identification number a record company assigned to the release. Catalog numbers are used for ordering and tracking purposes.
id string Rovi Music ID for the release, consisting of a 12-character string that starts with MR and is followed by 10 digits.
isComplete Boolean Whether the entire composition was performed on a release (true) or just part of the composition (false).
label string Record company that produced the release.
performanceRating integer An editorially assigned rating of the performance of a composition from 0 to 9, where 0 is no rating and higher numbers indicate a higher rating.
performers AlbumArtist [ ] List of the soloists, conductors, orchestras, and other performers, sorted alphabetically by name (last name or orchestra name).
releaseDate string Date the composition release was released in YYYY-MM-DD format.
title string Title of the composition.

XML Response Example

<CompositionRelease>
  <id>MR0000006306</id>
  <title>Classical Hip</title>
  <performers>
    <AlbumArtist>
      <id>MN0000215846</id>
      <name>David H. Yakobian</name>
    </AlbumArtist>
  </performers>
  <label>Worldwide Success Records</label>
  <catalog>9095</catalog>
  <releaseDate>1999-04-23</releaseDate>
  <performanceRating>0</performanceRating>
  <isComplete>false</isComplete>
</CompositionRelease>

JSON Response Example

{
  "id":"MR0000006306",
  "title":"Classical Hip",
  "performers":[
    {
    "id":"MN0000215846",
    "name":"David H. Yakobian"
    }
  ],
  "label":"Worldwide Success Records",
  "catalog":"9095",
  "releaseDate":"1999-04-23",
  "performanceRating":0,
  "isComplete":false
}
 
Personal tools