<?xml version="1.0" encoding="utf-16"?>
<xs:complexType name="Entry">
<xs:sequence>
<xs:element name="entryId" type="xs:int" />
<xs:element name="organizationId" type="xs:int" />
<xs:element name="uuid" type="xs:string" minOccurs="0" />
<xs:element name="status" type="EntryStatus" minOccurs="0" maxOccurs="1" />
<xs:element name="contactId" type="xs:int" minOccurs="0" />
<xs:element name="entryLabel" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="35" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="alternateTitle" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="averageAge" type="xs:int" minOccurs="0" />
<xs:element name="handicap" type="xs:decimal" minOccurs="0" />
<xs:element name="compositeLabel" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="150" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="seed" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="30" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="bow" type="xs:int" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Bow or lane number. Note that this is the bow or lane number assigned via the registration system for the entry. Timing systems may establish different bow/lane numbers
which are available in the Races/Lanes structures.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="waitListPriority" type="xs:int" minOccurs="0" maxOccurs="1" />
<xs:element name="lateEntry" type="xs:boolean" minOccurs="0" />
<xs:element name="entryCode" type="xs:string" minOccurs="0" maxOccurs="1" />
<xs:element name="createdOn" type="xs:dateTime" minOccurs="0" maxOccurs="1" />
<xs:element name="modifiedOn" type="xs:dateTime" minOccurs="0" maxOccurs="1" />
<xs:element name="entryOrganizations" type="xs:int" minOccurs="0" maxOccurs="unbounded" />
<xs:element name="entryParticipants" type="EntryParticipant" minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
</xs:complexType>
|