Reasonably simple one I suppose, I just can't find anything definitive (besides the fact that there is a lack of anything definitive)
Is there any way to incorporate into a schema, the requirement of a processing instruction node at a place in the document, also perhaps validating the processing instruction target?
For instance:
<node>
<?my-instruction data ?>
</node>
Would validate, whereas:
<node></node>
Would not?
And, better yet:
<node>
<?my-other-instruction data ?>
</node>
Would not either (given I could supply a required target of my-instruction
)
As mentioned, I can't find anything definitive (or at all for that matter) on the topic, so I'm left to assume this is something not supported. Others have mentioned that PIs are intended for "out-of-band" data and processing instructions, so it appears sensible that their inclusion would not be required in validation. Would be nice though.