Table of Contents

Metadata Support File (WIP)

This page is a WIP. There is likely to be incomplete and or missing information while the page is being built.

Summary

A Metadata Support File is a file that provides product and/or asset information used by Daz Studio to control how and where a file is presented to the user.

Detail

A Metadata Support File is an XML file which typically resides within the Content/Runtime/Support directory of a package, or the ./Runtime/Support directory within a mapped content directory. This file provides product and/or asset information used by Daz Studio to control how and where a file is presented to the user.

Example

<ContentDBInstall VERSION="1.0" >
	<Products>
	    <Product VALUE="Product Name" >
	        <StoreID VALUE="StoreID" />
	        <GlobalID VALUE="00000000-0000-0000-0000-000000000000" />
	        <ProductToken VALUE="12345" />
	        <Description><![CDATA[description text goes here]]></Description>
	        <Artists>
	            <Artist VALUE="Artist Name" />
	        </Artists>
	        <Assets>
	            <Asset VALUE="/Relative/Path/To/SomeUserFacingFile.ext" >
	                <Description><![CDATA[description text goes here]]></Description>
	                <ContentType VALUE="/Path/of/Content/Type" />
	                <Audience VALUE="Teens" />
	                <Categories>
	                    <Category VALUE="/Path/of/Category" />
	                </Categories>
	                <Compatibilities>
	                    <Compatibility VALUE="/Path/to/Compatibility/Base" />
	                </Compatibilities>
	                <CompatibilityBase VALUE="/Path/of/Compatibility/Base" />
	                <Tags>
	                    <Tag VALUE="keyword" />
	                    <Tag VALUE="ArtistName" />
	                </Tags>
	                <Userwords>
	                    <Userword VALUE="keyword" />
	                </Userwords>
	                <UserNotes><![CDATA[notes text goes here]]></UserNotes>
	            </Asset>
	        </Assets>
	        <SupportAssets VALUE="/Runtime/Support/ProductName.dsx">
	            <SupportAsset VALUE="/Relative/Path/To/SomeNonUserFacingFile.ext" />
	        </SupportAssets>
	        <ObjectCompatibilities>
	            <ObjectCompatibility VALUE="URI" REF="/Path/of/Object/SceneId" />
	        </ObjectCompatibilities>
	    </Product>
	</Products>
</ContentDBInstall>

Elements & Attributes