Displaying artists for remixes for ERN-4

ERN-4 now better supports how artists are communicated in remixes. The XML sample below shows two remixes, made by Johnny "Remixer" Smith of a recording by Peter Miller.

In the example below we have two display artists, Johnny Smith and Peter Miller. Smith used Miller’s “The Best Song Ever” to create two remixes called “Original Remix" and “Radio Remix”. The artist listed on the website should be displayed as being “Johnny Smith vs. Peter Miller”. 

In addition, the sample specifies the following individual display artist information: Peter Miller’s name should be shown in the title. The same applies to John Smith’s name. However, he also should be prefixed by "remixed by”. 

This leads to the following information to be shown to consumers:


Title to be displayed

Display Artist information

1

The Best Song Ever (Remix) 

Johnny Smith vs. Peter Miller

2

The Best Song Ever (Radio Remix) – Peter Miller remixed by Johnny Smith

Johnny Smith vs. Peter Miller


<?xml version="1.0" encoding="UTF-8"?>
<ern:NewReleaseMessagexmlns:ern="http://ddex.net/xml/ern/41"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://ddex.net/xml/ern/41 http://ddex.net/xml/ern/41/release-notification.xsd"
    LanguageAndScriptCode="en">
    <MessageHeader>
        <MessageId/>
        <MessageSender>
            <PartyId>PADPIDA000SAMPLE111</PartyId>
        </MessageSender>
        <MessageRecipient>
            <PartyId>PADPIDA000SAMPLE222</PartyId>
        </MessageRecipient>
        <MessageCreatedDateTime>2018-08-30T13:46:00Z</MessageCreatedDateTime>
    </MessageHeader>
    <PartyList>
        <Party>
            <PartyReference>P1</PartyReference>
            <PartyName>
                <FullName>Johnny "Remixer" Smith</FullName>
            </PartyName>
        </Party>
        <Party>
            <PartyReference>P2</PartyReference>
            <PartyName>
                <FullName>Peter Miller</FullName>
            </PartyName>
        </Party>
    </PartyList>
    <ResourceList>        
        <SoundRecording>
            <ResourceReference>A1</ResourceReference>
            <Type>MusicalWorkSoundRecording</Type>
            <ResourceId>
                <ProprietaryIdNamespace="PADPIDA000SAMPLE111">2</ProprietaryId>
            </ResourceId>
            <DisplayTitleText>The Best Song Ever (Remix)</DisplayTitleText>
            <DisplayTitle>
                <TitleText>The Best Song Ever</TitleText>
                <SubTitle>Remix</SubTitle>
            </DisplayTitle>
            <DisplayArtistName>Johnny Smith vs. Peter Miller</DisplayArtistName>
            <DisplayArtist>
                <ArtistPartyReference>P2</ArtistPartyReference>
                <DisplayArtistRole>MainArtist</DisplayArtistRole>
                <ArtisticRole>OriginalArtist</ArtisticRole>
            </DisplayArtist>
            <DisplayArtist>
                <ArtistPartyReference>P1</ArtistPartyReference>
                <DisplayArtistRole>MainArtist</DisplayArtistRole>
                <ArtisticRole>Remixer</ArtisticRole>
            </DisplayArtist>
            <Contributor>
                <ContributorPartyReference>P1</ContributorPartyReference>
                <Role>Remixer</Role>
            </Contributor>
            <Contributor>
                <ContributorPartyReference>P2</ContributorPartyReference>
                <Role>Soloist</Role>
                <InstrumentType>Triangle</InstrumentType>
            </Contributor>
            <Duration>PT0.01S</Duration>
            <ParentalWarningType>Unknown</ParentalWarningType>
        </SoundRecording>
        
        <SoundRecording>
            <ResourceReference>A2</ResourceReference>
            <Type>MusicalWorkSoundRecording</Type>
            <ResourceId>
                <ProprietaryIdNamespace="PADPIDA000SAMPLE111">1</ProprietaryId>
            </ResourceId>
            <DisplayTitleText>The Best Song Ever (Radio Remix) - Johnny Smith remixed by Peter Miller</DisplayTitleText>
            <DisplayTitle>
                <TitleText>The Best Song Ever</TitleText>
                <SubTitle>Radio Remix</SubTitle>
            </DisplayTitle>
            <DisplayArtistName>Johnny Smith vs. Peter Miller</DisplayArtistName>
            <DisplayArtist SequenceNumber="1">
                <ArtistPartyReference>P1</ArtistPartyReference>
                <DisplayArtistRole>MainArtist</DisplayArtistRole>
                <ArtisticRole>Remixer</ArtisticRole>
                <TitleDisplayInformation>                                    
                    <IsDisplayedInTitle>true</IsDisplayedInTitle>
                    <Prefix>- </Prefix>
                </TitleDisplayInformation>
            </DisplayArtist>
            <DisplayArtist SequenceNumber="2">
                <ArtistPartyReference>P2</ArtistPartyReference>
                <DisplayArtistRole>MainArtist</DisplayArtistRole>
                <ArtisticRole>OriginalArtist</ArtisticRole>
                <TitleDisplayInformation>
                    <IsDisplayedInTitle>true</IsDisplayedInTitle>
                    <Prefix> remixed by </Prefix>
                </TitleDisplayInformation>
            </DisplayArtist>
            <Contributor>
                <ContributorPartyReference>P1</ContributorPartyReference>
                <Role>Remixer</Role>
            </Contributor>
            <Contributor>
                <ContributorPartyReference>P2</ContributorPartyReference>
                <Role>Soloist</Role>
                <InstrumentType>Triangle</InstrumentType>
            </Contributor>
            <Duration>PT0.01S</Duration>
            <ParentalWarningType>Unknown</ParentalWarningType>
        </SoundRecording>
    </ResourceList>
    <ReleaseList/>
</ern:NewReleaseMessage>