V1.Metadata.Common:SignificantComposition

Jump to: navigation, search

SignificantComposition

Contains information about a significant composition in a musical genre.

Elements

NameTypeDescription
alternatetitle String Alternate title for the composition.
composers CompositionComposer [ ] Composers of the music piece.
genre genre Genre specified in the request.
genres Genre [ ] All genres the composition belongs to.
id String Rovi Music ID for the composition. You can use this ID in a Music Service request for information about the composition.
periods CompositionPeriod [ ] Musical periods for the composition; for example, Romantic or Modern.
rank Int A relative rank compared to others in the genre or subgenre. A higher number indicates a higher significance.
title String Title of the composition.

XML Response Example

The following example has been edited to reduce the length.
<SignificantComposition>
  <genre>
    <id>MA0000004500</id>
    <name>Chamber Music</name>
  </genre>
  <rank>9</rank>
  <id>MC0002376999</id>
  <title>Serenade No. 13 for strings in G major ("Eine kleine Nachtmusik"), K. 525</title>
  <alternatetitle>Eine kleine Nachtmusik, A Little Night Music</alternatetitle>
  <composers>
    <CompositionComposer>
      <id>MN0000026350</id>
      <name>Wolfgang Amadeus Mozart</name>
    </CompositionComposer>
  </composers>
  <genres>
    <Genre>
      <id>MA0000004499</id>
      <name>Orchestral</name>
      <weight>10</weight>
     </Genre>
    <Genre>
      <id>MA0000004500</id>
      <name>Chamber Music</name>
      <weight>9</weight>
    </Genre>
  </genres>
  <periods>
    <CompositionPeriod>
      <id>MA0000000081</id>
      <name>Classical</name>
    </CompositionPeriod>
  </periods>
</SignificantComposition>

JSON Response Example

{
  "genre":{
    "id":"MA0000004500",
    "name":"Chamber Music"
  },
  "rank":9,
  "id":"MC0002376999",
  "title":"Serenade No. 13 for strings in G major (\"Eine kleine Nachtmusik\"), K. 525",
  "alternatetitle":"Eine kleine Nachtmusik, A Little Night Music",
  "composers":[
    {
      "id":"MN0000026350",
      "name":"Wolfgang Amadeus Mozart"
    }
  ],
  "genres":[
    {
      "id":"MA0000004499",
      "name":"Orchestral",
      "weight":10
    },
    {
      "id":"MA0000004500",
      "name":"Chamber Music",
      "weight":9
    },
    {
      "id":"MA0000002521",
      "name":"Classical",
      "weight":9
    }
  ],
  "periods":[
    {
      "id":"MA0000000081",
      "name":"Classical"
    }
  ]
}
 
Personal tools