V1.Metadata.Common: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>
  <primaryartists>
    <CreditArtist>
      <id>MN0000286115</id>
      <name>Lorrie Morgan</name>
    </CreditArtist>
  </primaryartists>
  <year>2001</year>
  <credit>Composer</credit>
  <type>I</type>
</NameMusicCredit>

JSON Response Example

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