A Proposal for a Shadowrun XML Standard

identity

root/rpgcharacter/bio/identity
Back

Namespace:
Filename:

Content: name (type: string) , alias (type: string) *, level (type: int) ?, id (type: string) ?, note (type: string) *, appdata (type: customdata) *

Description: The identity tag describes one of the character's real or false identities. Most characters will only have one identity tag, but can have any number of them.


Code Fragment

<xs:complexType name="identity">
  <xs:sequence>
    <xs:element type="xs:string" name="name"/>
    <xs:element type="xs:string" name="alias" minOccurs="0" maxOccurs="unbounded"/>
    <xs:element type="xs:int" name="level" minOccurs="0" maxOccurs="1"/>
    <xs:element type="xs:string" name="id" minOccurs="0" maxOccurs="1"/>
    <xs:element type="xs:string" name="note" minOccurs="0" maxOccurs="unbounded"/>
    <xs:element type="customdata" name="appdata" minOccurs="0" maxOccurs="unbounded"/>
  </xs:sequence>
</xs:complexType>