Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i wanted to constraint the Grade element to show only 3 possibilities that is GradeA or GradeB or GradeA and Grade B but my logic is wrong. As for my code it make sures that either GradeA or GradeB will be shown.But it also makes that GradeB or GradeA can appear 2 times,and i dont want them to appear 2 time.The result can only appear either GradeA,GradeB or GradeA and GradeB.can anyone show me on the correct way to code this.

<Grade>
  <GradeA/>
  <GradeB/>
</Grade>

Below is the code that i have.

<xsd:choice minOccurs="1" maxOccurs="2">
   <xsd:element name="GradeA" minOccurs="0" maxOccurs="1"/>
   <xsd:element name="GradeB" minOccurs="0" maxOccurs="1"/>
</xsd:choice>
share|improve this question

1 Answer

up vote 0 down vote accepted

If both elements are present, can they appear in either order?

You want something like:

<xs:choice>
  <xs:sequence>
     <xs:element ref="GradeA">
     <xs:element ref="GradeB" minOccurs="0"/>
  </xs:sequence>
  <xs:sequence>
     <xs:element ref="GradeB">
     <xs:element ref="GradeA" minOccurs="0"/>
  </xs:sequence>
</xs:choice>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.