defining undefined in xsd

wxdqz

New Member
My XML has one element which can contain anything:

<jobs>
<payload>
<customStuff>anything</customStuff>
<nestedCustomStuff>
<somethingElse>anything</somethingElse>
</nestedCustomStuff>
</payload>
</jobs>

I want my XSD to say that a "jobs" element can have a child
which is a "payload" element, but that the contents of
the payload are undefined (each job will have a completely different payload). How can I do that?
 
Back
Top