Common/name/v1.1/NameComposition

Jump to: navigation, search

NameComposition

Contains information about a classical composition by a person or group.

Elements

NameTypeDescription
classicalWorkType string Type of classical music the composition applies to.
compositionDate string Date the composition was composed, in YYYY-MM-DD format.
genre genre Musical genre the composition falls into, along with a weighting that reflects the relative importance of the genre to the composition.
hasReview Boolean Whether a description of the composition is available from a Composition/Description request: true or false.
id string Rovi Music ID for the composition. You can use this ID in a Composition request for information about the composition.
title string Title of the composition.

XML Response Example

<NameComposition>
  <id>MC0002359531</id>
  <title>Halil, nocturne for flute solo, piccolo, alto flute, percussion & harp; also for flute, piano & percussion</title>
  <compositionDate>1981-??-??</compositionDate>
  <classicalWorkType>Nocturne</classicalWorkType>
  <genre>
    <id>MA0000012338</id>
    <name>Concerto</name>
    <weight>10</weight>
  </genre>
  <hasReview>false</hasReview>
</NameComposition>

JSON Response Example

{
  "id":"MC0002359531",
  "title":"Halil, nocturne for flute solo, piccolo, alto flute, percussion & harp; also for flute, piano & percussion",
  "compositionDate":"1981-??-??",
  "classicalWorkType":"Nocturne",
  "genre":{
    "id":"MA0000012338",
    "name":"Concerto",
    "weight":10
  },
  "hasReview":false
}
 
Personal tools