Encloses the genotyping data pertaining to a particular sample. It may contain multiple typing elements (for instance, one for each locus). Children: --------- - property: (optional, qty: 0 or more) - collection-method: (optional, qty: 0 or 1) - Free-form text such as "swab", "filter paper", and "blood aliquots". - typing: (required, qty: 1 or more) Attributes: ----------- - id: (required) Identifier for the sample (ex: "1234-5678-9", "123456789") - center-code: (optional) Center code of the sample's origin (donor center, transplant center, etc.) |
QName | Type | Fixed | Default | Use | Inheritable | Annotation |
---|---|---|---|---|---|---|
center-code | restriction of xs:string | optional | ||||
id | restriction of xs:string | required |
Element | sample |
<xs:complexType name="sample"> <xs:annotation> <xs:documentation>Encloses the genotyping data pertaining to a particular sample. It may contain multiple typing elements (for instance, one for each locus). Children: --------- - property: (optional, qty: 0 or more) - collection-method: (optional, qty: 0 or 1) - Free-form text such as "swab", "filter paper", and "blood aliquots". - typing: (required, qty: 1 or more) Attributes: ----------- - id: (required) Identifier for the sample (ex: "1234-5678-9", "123456789") - center-code: (optional) Center code of the sample's origin (donor center, transplant center, etc.)</xs:documentation> </xs:annotation> <xs:sequence> <xs:element name="property" type="hmlns:property" minOccurs="0" maxOccurs="unbounded"/> <xs:element name="collection-method" type="xs:string" minOccurs="0" maxOccurs="1"/> <xs:element name="typing" type="hmlns:typing" minOccurs="1" maxOccurs="unbounded"/> </xs:sequence> <xs:attribute name="id" use="required"> <xs:simpleType> <xs:restriction base="xs:string"> <xs:minLength value="1"/> </xs:restriction> </xs:simpleType> </xs:attribute> <xs:attribute name="center-code" use="optional"> <xs:simpleType> <xs:restriction base="xs:string"> <xs:minLength value="1"/> </xs:restriction> </xs:simpleType> </xs:attribute> </xs:complexType> |