cancel
Showing results for 
Search instead for 
Did you mean: 

doc contain video

mandy
Champ in-the-making
Champ in-the-making
how we define metadata type for uploading video and images in a document.
1 REPLY 1

kaynezhang
World-Class Innovator
World-Class Innovator
Do you mean definite new type with multiple file attachments?
If yes ,you can define it like this

   <type name="newtype">
            <property name="property1">
               <type>d:content</type>
               <multiple>false</multiple>
            </property>              
            <property name="property12">
               <type>d:content</type>
               <multiple>false</multiple>
            </property>              
         </properties>
      </type>

or use a content property with multiple value

   <type name="newtype">
            <property name="property1">
               <type>d:content</type>
               <multiple>true</multiple>
            </property>                           
         </properties>
      </type>


But why do you want to do that ,why not use document assocation?