Common/name/v1.1/NameMusicCredit

Jump to: navigation, search

NameMusicCredit

Contains information about a music production credit earned by a person, group, or organization.

Elements

NameTypeDescription
credit string Role performed in the creation or production of the musical work.
id string Database ID of the musical work.
primaryartists CreditArtist [ ] Names of the primary artists in the production.
title string Title of the musical work.
type string Type of credit:
  • G
Group.
  • I
Individual.
  • O
Organization.
  • U
Unknown.
year string Year the credit was earned.

XML Response Example

<NameMusicCredit>
  <id>MW0000000971</id>
  <title>I Finally Found Someone</title>
  <year>2001</year>
  <credit>Composer</credit>
  <type>I</type>
  <primaryartists>
    <CreditArtist>
      <id>MN0000286115</id>
      <name>Lorrie Morgan</name>
    </CreditArtist>
  </primaryartists>
</NameMusicCredit>

JSON Response Example

{
   "id":"MW0000000971",
   "title":"I Finally Found Someone",
   "year":"2001",
   "credit":"Composer",
   "type":"I",
   "primaryartists":[
      {
         "id":"MN0000286115",
         "name":"Lorrie Morgan"
      }
   ]
}
 
Personal tools