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 need to mark some elements as non required in the XSD schema that some one else created. How do I go about figuring out which elements are marked as required, is there a particular flag I could search for. Currently all of my elements are marked with minOccurs="0" is this what needs to be changed?

Thanks!

share|improve this question

1 Answer

up vote 6 down vote accepted

Yes. minOccurs="0" is what you need to add to an element as optional. Leaving no minOccurs attribute implies mandatory (minOccurs="1").

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.