A Proposal for a Shadowrun XML Standard

customdata

root
Back

Namespace:
Filename:

Content: appid (type: string) , appversion (type: string) ?, setname (type: string) ?, data (type: namevaluelist)

Description: The customdata tag provides a place in a usage file for applications to store data specific to themselves. Well-behaved applications will ignore but preserve such tags entered by other applications.


Code Fragment

<xs:complexType name="customdata">
  <xs:sequence>
    <xs:element type="xs:string" name="appid"/>
    <xs:element type="xs:string" name="appversion" minOccurs="0" maxOccurs="1"/>
    <xs:element type="xs:string" name="setname" minOccurs="0" maxOccurs="1"/>
    <xs:element type="namevaluelist" name="data"/>
  </xs:sequence>
</xs:complexType>