2.1.5 t:ExtendedPropertyType Complex Type

The ExtendedPropertyType complex type specifies extended properties on folders and items. This complex type represents an extended property instance, including both its path identifier and its associated value.

 <xs:complexType name="ExtendedPropertyType">
   <xs:sequence>
     <xs:element name="ExtendedFieldURI"
       type="t:PathToExtendedFieldType"
      />
     <xs:choice>
       <xs:element name="Value"
         type="xs:string"
        />
       <xs:element name="Values"
         type="t:NonEmptyArrayOfPropertyValuesType"
        />
     </xs:choice>
   </xs:sequence>
 </xs:complexType>
  

The following table lists the child elements of the ExtendedPropertyType complex type.

Element name

Type

Description

ExtendedFieldURI

t:PathToExtendedFieldType

Specifies the path to the extended property.

Value

xs:string ([XMLSCHEMA2])

Specifies a single value for the property specified by the ExtendedFieldURI element.

Values

t:NonEmptyArrayOfPropertyValuesType (section 2.1.4)

Specifies two or more values for the property specified by the ExtendedFieldURI element.