OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

wsrp message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: ItemDescription should allow multiple decriptions


    Currently the type ItemDescription only allows a single description element. This implies the description must be in a single language. It should be changed to allow multiple descriptions (in multiple languages).

Any comments?

Thanks,

Nathan Lipke

Current  schema:
  <complexType name="ItemDescription">
    <sequence>
      <element name="description" type="types:LocalizedString"/>
      <element name="extensions"  type="types:Extension" minOccurs="0" maxOccurs="unbounded"/>
    </sequence>
    <attribute name="itemName" type="xsd:string" use="required"/>
  </complexType>
 
Proposed change:
  <complexType name="ItemDescription">
    <sequence>
      <element name="description" type="types:LocalizedString" minOccurs="1" maxOccurs="unbounded"/>
      <element name="extensions"  type="types:Extension" minOccurs="0" maxOccurs="unbounded"/>
    </sequence>
    <attribute name="itemName" type="xsd:string" use="required"/>
  </complexType>



[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]