QName | Type | Fixed | Default | Use | Inheritable | Annotation |
---|---|---|---|---|---|---|
CheckDigit | restriction of xs:string | optional | ||||
Issue | TicketIssueCodeType | optional | ||||
Issued | xs:boolean | optional | ||||
PaperType | TicketIssuePaperCodeType | optional |
Complex Types | DocumentTicketType, TicketType |
<xs:attributeGroup name="TicketGroup"> <xs:attribute name="Issued" type="xs:boolean" use="optional"/> <xs:attribute name="Issue" type="TicketIssueCodeType" use="optional"/> <xs:attribute name="PaperType" type="TicketIssuePaperCodeType" use="optional"/> <xs:attribute name="CheckDigit" use="optional"> <xs:simpleType> <xs:restriction base="xs:string"> <xs:pattern value="[0-9]{1}"/> </xs:restriction> </xs:simpleType> </xs:attribute> </xs:attributeGroup> |