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 am trying to create a restriction for the CountryType defined in http://docs.oasis-open.org/ciq/v3.0/prd03/xsd/default/xsd/xAL.xsd

Basically I just want the NameElement element in CountryType to be mandatory.

I have tried a few combination of the following snippet, but to no avail.

 <xs:complexType name="MyCountryType">
  <xs:complexContent>
   <xs:restriction base="xal:CountryType">
    <xs:sequence>
     <xs:element name="NameElement" minOccurs="1" />
    </xs:sequence>
   </xs:restriction>
  </xs:complexContent>
 </xs:complexType>

The difference between the example in customization guides for UBL in the OASIS site and the one I am doing is the element NameElement is not a global element and therefore cannot be referenced by the "ref" attribute.

Is there any way of doing this?

share|improve this question
Do you want conserv same namespace as xAL.xsd (urn:oasis:names:tc:ciq:xal:3) ? – Istao Dec 6 '10 at 9:21
Is it possible without "copying" and "modifying" the original source? I would like to keep some sort of inheritance tree to ensure that we are not deviating from the original schema structures (i.e. just use restrictions). – Archimedes Trajano Dec 7 '10 at 0:28

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.