I have an element that must contain only specific values in xml but there may be more that one of that element.However the dtd seems to be wrong(skipping irrelevant parts)
dtd
<!ELEMENT Country ( US | UK | France | Italy ) >
xml
<table>
<details>
<Country>US</CINEMA>
<Country>Italy</CINEMA>
<Country>UK</CINEMA>
</details>
Here is the error that i get when using xmlvalidator
The content of element type "Country" must match "( US | UK | France | Italy )"