vote up 1 vote down star

How can I represent the following in XSD.

<price-update>
    <![CDATA[
      arbitrary data goes here
    ]]>
</price-update>
flag
Is there a specific reason that you're using CDATA? In other words, might it be possible to pass that information in an element (or multiple elements) that you could add to your schema definition? – Dave DuPlantis Oct 6 '08 at 19:27
The consumer of my doc also needs some more info which is defined in its own XML language. We don't want to use separate files. What i want to do is piggyback another XML doc inside mine. – Declan Shanaghy Oct 9 '08 at 18:39

2 Answers

vote up 0 vote down check
<element name="price-update" type="string"></element>

is about as close as you can get.

(I thought it best to move the answer out of the comments and into an actual answer).

link|flag
vote up 4 vote down

A CDATA tag is merely a means of escaping data as a text node. Therefore you cannot stipulate that you require a CDATA node.

From a DOM perspective, the following documents are identical:

<doc>value</doc>

and

<doc><![CDATA[value]]></doc>
link|flag
SO how would you recommend that i writ ethe XSD? Like this? <element name="price-update" type="string"></element> – Declan Shanaghy Oct 6 '08 at 19:11
I think type="string" is about as close as you can get. – Oliver Hallam Oct 6 '08 at 19:20
You might consider defining your own type using a regex pattern, but I don't think that would work as the XSD processing doesn't "see" the CDATA part actually apply the pattern (not definite though). – Jeff Yates Oct 6 '08 at 19:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.