up vote 5 down vote favorite
1
share [g+] share [fb]

How can I represent the following in XSD.

<price-update>
    <![CDATA[
      arbitrary data goes here
    ]]>
</price-update>
link|improve this question

75% accept rate
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
feedback

2 Answers

up vote 6 down vote accepted
<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|improve this answer
feedback

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|improve this answer
1  
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
feedback

Your Answer

 
or
required, but never shown

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