Resource-specific previews

In many cases a Release Creator wishes to communicate previews for some (or all) of the resources contained in a release. To effect this, two things need to be done:

Firstly, for each sound recording there have to be (at least) two binaries. Details on how this can be done can be found here.

Secondly, a set of adapted Deals needs to be communicated: one for the "normal" exploitation and one for the previews.

To explain this a two-track album (referenced as R1) is assumed. The two sound recordings are referenced as A1 and A2 and the four binaries are T1 and T1P (for A1), and T2 and T2P (for A2).

 Example for Resource-specific previews (ERN-3)
    <DealList>
       <ReleaseDeal>
           <!-- This is the deal for the 'normal' exploitation (here: download) -->
           <DealReleaseReference>R1</DealReleaseReference>
           <Deal>
               <DealTerms>
                   <Usage>
                       <UseType>Download</UseType>
                   </Usage>
                   <TerritoryCode>FO</TerritoryCode>
                   <ValidityPeriod>
                       <StartDate>2016-01-01</StartDate>
                   </ValidityPeriod>
               </DealTerms>
               <DealTechnicalResourceDetailsReferenceList>
                   <DealTechnicalResourceDetailsReference>T1</DealTechnicalResourceDetailsReference>
                   <DealTechnicalResourceDetailsReference>T2</DealTechnicalResourceDetailsReference>
               </DealTechnicalResourceDetailsReferenceList>
           </Deal>
       </ReleaseDeal> 
        <ReleaseDeal>
            <!-- This is the deal for the preview (here: stream) -->
            <DealReleaseReference>R1</DealReleaseReference>
            <Deal>
                <DealTerms>
                    <Usage>
                        <UseType>Stream</UseType>
                    </Usage>
                    <TerritoryCode>FO</TerritoryCode>
                    <ValidityPeriod>
                        <EndDate>2016-01-01</EndDate>
                    </ValidityPeriod>
                </DealTerms>
                <DealTechnicalResourceDetailsReferenceList>
                    <DealTechnicalResourceDetailsReference>T1P</DealTechnicalResourceDetailsReference>
                    <DealTechnicalResourceDetailsReference>T2P</DealTechnicalResourceDetailsReference>
                </DealTechnicalResourceDetailsReferenceList>
            </Deal>
        </ReleaseDeal> 
    </DealList>
 Example for Resource-specific previews (ERN-4)
 <DealList>
        <ReleaseDeal>
            <!-- This is the deal for the 'normal' exploitation (here: download) -->
            <DealReleaseReference>R1</DealReleaseReference>
            <Deal>
                <DealTerms>
                    <TerritoryCode>FO</TerritoryCode>
                    <ValidityPeriod>
                        <StartDate>2016-01-01</StartDate>
                    </ValidityPeriod>
                    <UseType>Download</UseType>
                </DealTerms>
                <DealTechnicalResourceDetailsReferenceList>
                    <DealTechnicalResourceDetailsReference>T1</DealTechnicalResourceDetailsReference>
                    <DealTechnicalResourceDetailsReference>T2</DealTechnicalResourceDetailsReference>
                </DealTechnicalResourceDetailsReferenceList>
            </Deal>
        </ReleaseDeal>
        <ReleaseDeal>
            <!-- This is the deal for the preview (here: stream) -->
            <DealReleaseReference>R1</DealReleaseReference>
            <Deal>
                <DealTerms>
                    <TerritoryCode>FO</TerritoryCode>
                    <ValidityPeriod>
                        <EndDate>2016-01-01</EndDate>
                    </ValidityPeriod>
                    <UseType>Stream</UseType>
                </DealTerms>
                <DealTechnicalResourceDetailsReferenceList>
                    <DealTechnicalResourceDetailsReference>T1P</DealTechnicalResourceDetailsReference>
                    <DealTechnicalResourceDetailsReference>T2P</DealTechnicalResourceDetailsReference>
                </DealTechnicalResourceDetailsReferenceList>
            </Deal>
        </ReleaseDeal>
    </DealList>