TicketGroup

Attribute Group Information

Attributes

QName Type Fixed Default Use Inheritable Annotation
CheckDigit restriction of xs:string optional
Issue TicketIssueCodeType optional
Issued xs:boolean optional
PaperType TicketIssuePaperCodeType optional

Used By

Source

<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>