A Proposal for a Shadowrun XML Standard

system

root/rpgcharacter/realworld/system
Back

Namespace:
Filename:

Content: name (type: systemtype) , nameother (type: string) ?, edition (type: byte) ?, variation (type: string) ?, reference (type: string) ?

Description: The system tag defines the role-playing system used to define the character.


Code Fragment

<xs:complexType name="system">
  <xs:sequence>
    <xs:element type="systemtype" name="name"/>
    <xs:element type="xs:string" name="nameother" minOccurs="0" maxOccurs="1"/>
    <xs:element type="xs:byte" name="edition" minOccurs="0" maxOccurs="1"/>
    <xs:element type="xs:string" name="variation" minOccurs="0" maxOccurs="1"/>
    <xs:element type="xs:string" name="reference" minOccurs="0" maxOccurs="1"/>
  </xs:sequence>
</xs:complexType>