Allow or forbid an element based on an attribute value

41 Views Asked by At

This is related to 37071177 but not quite the same.

Can I have a container with an attribute like:

<question type="select">
  <text>This is the text</text>
  <selection points="1">This is a choice</selection>
  <selection points="20">This is a different choice</selection>
</question>

where the selections are ONLY present if the parent @type attribute's value is "select" but not if it is "yes/no" or something else? I thought I could do this with an <xs:assert> but you can't put an assert there...

I found lots of examples on using co-constraints to restrict the presence of one attribute based on the presence or value of another, but not any to restrict the presence of an element (or maybe maxOccurs) based on an attribute value.

<!-- this is a question - it might have one or more selections depending on its type -->
<xs:complexType name="questionType">
  <xs:sequence>
    <xs:element name="topic" maxOccurs="1" minOccurs="1" type="xs:string" />
    <xs:element name="text" maxOccurs="1" minOccurs="1"></xs:element>
    <xs:element name="selection" maxOccurs="unbounded" minOccurs="0" type="selectionType" />
  </xs:sequence>
    <xs:attribute name="id" type="xs:string" use="required" />
    <xs:attribute name="type" use="required">
      <xs:simpleType>
        <xs:restriction base="xs:string">
        <xs:enumeration value="yesno" />
        <xs:enumeration value="select" />
      </xs:restriction>
    </xs:simpleType>
  </xs:attribute>
</xs:complexType>

<!-- if the type of the question is 'selection' it may have one or more of these -->
<xs:complexType name="selectionType">
  <xs:simpleContent>
    <xs:extension base="xs:string">
      <xs:attribute name="points" type="xs:int" use="required" />
    </xs:extension>
  </xs:simpleContent>
</xs:complexType>
0

There are 0 best solutions below