Restricting XML Elements Based on Another Element via XSD

13,102

Solution 1

Similar questions have been asked several times .. in stackoverflow or any tech blogs ..

but the answer is always not possible,


cases like :

(a) validating Element depending on the value or presence of any other element/attribute
(b) validating value of an element depending on the value or presence of any other element/attribute
(c) validating attribute depending on the value or presence of any other element/attribute
(d) defining elements/attributes of same name having different Types/DataTypes under same scope
(e) validating child elements on the basis of value or presence of any other Elements/Attributes

all the above mentioned cases are not possible to achieve ..

but if you can implement some transformation thing .. then you can get help. what I mean to say is "first go through transformation and modify the XML as per your requirement,

example :: if the particular field is expected with some value .. pass the XML as it is if the condition is satisfied and don't pass if it doesn't .. in the next block XSD is going to validate and obviously errors out :) you can figure out that it is missing your custom validation ..

anyway the intention is to block or Pass the xml according to the data .. and that is what you are doing ..

Note: Schematron has been come into good practice recently! Here is the tutorial: http://zvon.org/xxl/SchematronTutorial/General/contents.html

Solution 2

What I would suggest is to create XSD for each cases defined below:

Cases like:

  1. Validating Element depending on the value or presence of any other element/attribute.
  2. Validating value of an element depending on the value or presence of any other element/attribute.
  3. Validating attribute depending on the value or presence of any other element/attribute.
  4. Ignoring (random) elements/attributes from validation isn't allowed. (I mean to say is usage of has restrictions.)
  5. Elements/attributes of same name having different DataTypes.
  6. Validating child elements on the basis of value or presence of any other Elements/Attributes.

And create there own XML for that.

Share:
13,102
hmcclungiii
Author by

hmcclungiii

I've got three wonderful kids and a great wife. I've been programming since a small child, and got my BS as a young adult. Since then, I've been involved in a number of organizations, and am currently freelancing.

Updated on June 13, 2022

Comments

  • hmcclungiii
    hmcclungiii almost 2 years

    I believe this has to do with keyref but I'm not for sure, and I am really not sure that it can be done at all.

    For example, say I have myElement1 and myElement2. If there are no myElement2 in the XML file, then myElement1 must exist, otherwise it is optional.

    Is there any way to force this type of validation in my XSD file?